Sbhn_NPTop 10 Pools on Optimism In Terms of USD Volume
    Updated 2023-01-15
    select
    pool_name,
    count(DISTINCT tx_hash) as swaps,
    sum(amount_out_usd) as usd_volume
    from optimism.velodrome.ez_swaps
    where block_timestamp >= '2022-12-15'
    and amount_out_usd is not NULL
    group by 1
    order by 3 desc
    limit 10
    Run a query to Download Data