DB_ Curve Pools - DURINGS
    Updated 2022-12-06
    select
    pool_name,
    count(tx_hash) as tx_count,
    sum(amount_in_usd)

    from ethereum.core.ez_dex_swaps
    where platform = 'curve'
    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
    Run a query to Download Data