ML6Qualified Pools of uniswap & sushiswap of last 100k blocks
    Updated 2022-07-03
    select sum(amount_in_usd) as amount,pool_name from ethereum.core.ez_dex_swaps where pool_name in (
    select pool_name from ethereum.core.ez_dex_swaps where
    platform='sushiswap' or platform='uniswap-v2' and amount_in_usd > 0
    group by 1
    having sum(amount_in_usd)>=100000) and block_number > 14968000
    group by 2
    Run a query to Download Data