omer93Sushi swaps on ethereum
    Updated 2022-06-29
    SELECT
    date_trunc('day',block_timestamp) as daily,
    count(distinct tx_hash) as swapping_actions,
    sum(amount_in_usd+amount_out_usd) as swapping_volume
    from ethereum.sushi.ez_swaps where block_timestamp between '2022-05-01' and '2022-05-31'
    group by 1
    Run a query to Download Data