DB_Sushi Swap pools - BEFORE
    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-01' and '2022-11-05'
    and pool_name is not null
    group by 1
    order by 2 DESC
    limit 10
    Run a query to Download Data