0xaimanvolume into stable coin
    Updated 2022-05-30
    select date_trunc('day',block_timestamp) as date, sum(amount_in) as vol_sushi_in,
    sum(vol_sushi_in) OVER(ORDER BY date asc ROWS BETWEEN UNBOUNDED PRECEDING AND CURRENT ROW) AS cum_vol_sushi_dumped
    from ethereum_sushi.ez_swaps
    where symbol_in='SUSHI' and block_timestamp>='2021-11-01'


    group by 1 order by 1

    limit 12000
    -- group by 1 order by 1


    Run a query to Download Data