vegardTop 10 Velodrome Pairs USD Amount
    Updated 2022-11-03
    select
    concat(symbol_in, ' to ', symbol_out) as pair,
    count(distinct(tx_hash)) as tx_num,
    sum(amount_in_usd) as amount_usd
    from optimism.velodrome.ez_swaps
    where block_timestamp >= current_date - interval '{{ days }} days'
    group by pair
    having amount_usd > 0
    Run a query to Download Data