adambalafastest growing pool in the last 30 days(eth)
    Updated 2021-12-15
    SELECT
    pool_name as title,
    sum(amount_usd) as volume
    from ethereum.dex_swaps
    where block_timestamp::date > current_date-30 and platform like 'sushiswap'
    group by title having volume>0 order by volume desc limit 10
    Run a query to Download Data