select
pool_name,
count(tx_hash) as tx_count,
sum(amount_in_usd)
from ethereum.core.ez_dex_swaps
where platform = 'uniswap-v2'
and block_timestamp::date between '2022-11-06' and '2022-11-10'
and pool_name is not null
group by 1
order by 2 DESC
limit 10