adriaparcerisasOrbs monthly swaps on DEX
    Updated 2021-12-09
    select
    date_trunc('month',BLOCK_TIMESTAMP ) as date,
    sum(amount_usd) as volume
    from ethereum.dex_swaps
    where token_address = lower('0xff56cc6b1e6ded347aa0b7676c85ab0b3d08b0fa')
    --and BLOCK_TIMESTAMP < '2021-12-01'
    group by date
    order by date desc
    Run a query to Download Data