adambalaMonthly Swap Volume
    Updated 2021-12-05
    SELECT
    date_trunc('month',block_timestamp) as date ,
    sum(amount_usd)
    from ethereum.dex_swaps
    where token_address = '0xff56cc6b1e6ded347aa0b7676c85ab0b3d08b0fa'
    and block_timestamp::date > current_date-365
    group by date
    Run a query to Download Data