mmdrezavolume of swaps in last 90 days
    Updated 2022-06-26
    select date_trunc('day',block_timestamp)as date,sum(AMOUNT_out_USD) as amount_out
    from ethereum.sushi.ez_swaps
    where block_timestamp >= current_date-90 and AMOUNT_out_USD is not null
    group by date
    order by date asc
    Run a query to Download Data