binhachon3. [Easy] Monthly Swap Volume - Which dex
    Updated 2021-12-08
    select
    date_trunc('Month', block_timestamp) as blocktime,
    platform,
    sum(amount_usd) as volume
    from
    ethereum.dex_swaps
    where
    token_address = '0xff56cc6b1e6ded347aa0b7676c85ab0b3d08b0fa'
    group by
    blocktime,
    platform

    Run a query to Download Data