mlhaETH total
    Updated 2022-09-14
    with sell as (select sum(amount_in_usd) as swap_from_rETH_USD_volume
    FROM ethereum.core.ez_dex_swaps
    where block_timestamp >= '2022-01-01'
    and symbol_in in ('aETH')
    ),

    buy as (select sum(amount_out_usd) as swap_to_rETH_USD_volume
    FROM ethereum.core.ez_dex_swaps
    where block_timestamp >= '2022-01-01'
    and symbol_out in ('aETH')
    )

    select swap_from_rETH_USD_volume,
    swap_to_rETH_USD_volume
    from sell x
    join buy y

    Run a query to Download Data