DB_Sushi Swap pools - AFTER
    Updated 2022-12-06
    select
    pool_name,
    count(tx_hash) as tx_count,
    sum(amount_in_usd)

    from arbitrum.sushi.ez_swaps

    where block_timestamp::date between '2022-11-11' and '2022-11-15'
    and pool_name is not null
    group by 1
    order by 2 DESC
    limit 10
    Run a query to Download Data