vegardTop 10 Velodrome Pairs Symbol out USD Amount and Number of Swaps in last month
    Updated 2022-11-03
    select
    symbol_out,
    count(distinct(tx_hash)) as tx_num,
    sum(amount_out_usd) as amount_usd
    from optimism.velodrome.ez_swaps
    where block_timestamp >= current_date - {{ days }}
    group by symbol_out
    having amount_usd > 0
    order by amount_usd desc
    limit 10
    Run a query to Download Data