LittlerDataBiggest swaps per Platform
    Updated 2022-12-21
    with uniswapv3 as (
    select
    max(amount_out_usd) as Amount_USD_Out
    ,symbol_out
    ,platform
    ,pool_name
    from ethereum.core.ez_dex_swaps
    where block_timestamp > '2022-01-01'
    and platform = 'uniswap-v3'
    and amount_out_usd is not null
    and amount_in_usd is not null
    group by 2, 3, 4
    order by 1 desc
    limit 1
    ),

    uniswapv2 as (
    select
    max(amount_out_usd) as Amount_USD_Out
    ,symbol_out
    ,platform
    ,pool_name
    from ethereum.core.ez_dex_swaps
    where block_timestamp > '2022-01-01'
    and platform = 'uniswap-v2'
    and amount_out_usd is not null
    and amount_in_usd is not null
    group by 2, 3, 4
    order by 1 desc
    limit 1
    ),

    synthetix as (
    select
    max(amount_out_usd) as Amount_USD_Out
    Run a query to Download Data