Pmisha-bmlMdxsushiswap
    Updated 2022-04-20
    SELECT
    date_trunc('day',block_timestamp) as dt,
    direction,
    sum(amount_usd) as swap_volume_uni
    from ethereum.dex_swaps
    where platform in ('sushiswap')
    and block_timestamp >= '2022-02-24' and block_timestamp<=CURRENT_DATE-3
    group by 1,2
    Run a query to Download Data