par_rnTop 5 Curve Pairs ( Volume )
    Updated 2022-11-26
    with platforms as ( select PLATFORM , CONCAT(symbol_in, '->', symbol_out) as pair , count(DISTINCT(tx_hash)) as total_tx, count(DISTINCT(origin_from_address)) as total_swapper,
    sum(amount_in_usd) as volume, avg(amount_in_usd) as avg_volume
    from ethereum.core.ez_dex_swaps
    where amount_in_usd < 1000000
    and block_timestamp::date >= '2022-01-01'
    group by 1,2)

    select PLATFORM , pair , volume
    from platforms
    where PLATFORM = 'curve'
    and pair is not null and volume is not null
    order by 3 desc
    limit 5
    Run a query to Download Data