nitsTransaction distribution month wise
    Updated 2022-02-22
    select month(block_timestamp) as month, sum(amount_usd) as total_swap_volume, count(*) as total_instances,
    avg(amount_usd) as avg_swap_volume
    from ethereum.dex_swaps
    where platform = 'sushiswap'
    GROUP by 1
    limit 100
    Run a query to Download Data