mattkstewGain or Lose 1
    Updated 2022-06-10
    select
    date_trunc('day', block_timestamp),
    sum(amount_out_usd - amount_in_usd)
    -- amount gained



    from ethereum.core.ez_dex_swaps
    where symbol_out like 'WETH'
    and symbol_in like 'stETH'
    and amount_in_usd < 10000
    group by 1
    Run a query to Download Data