boomer77sushiswap monthly
    Updated 2022-02-23
    select date_trunc('month', block_timestamp) as dt, count(distinct tx_id) as tx_count, sum(amount_usd/2) as volume_usd
    from ethereum.dex_swaps
    where platform = 'sushiswap' and block_timestamp >= '2021-01-01'
    group by 1
    Run a query to Download Data