NuveveCryptoArchived2023-11-19 01:16 PM
    Updated 2023-11-19
    select
    pool_name,
    sum(amount_in_usd) as total_usd
    from ethereum.defi.ez_dex_swaps
    where platform = 'curve'
    and amount_in_usd is not null
    group by pool_name
    order by total_usd desc
    limit 10

    Run a query to Download Data