with
data2 as (
SELECT count(tx_id) as txs,to_address_name,sum(amount_usd) from ethereum.udm_events where origin_function_name='addLiquidity' and to_label='uniswap'
and date(block_timestamp)>CURRENT_DATE-30
GROUP by 2)
SELECT * from data2
order by txs desc
LIMIT 1000