AndyCoolMonthly swap volume for ORB
    Updated 2021-12-07
    select
    date_trunc('month',BLOCK_TIMESTAMP ) as week,
    sum(amount_usd) as amt,
    platform
    from ethereum.dex_swaps
    where token_address = lower('0xff56cc6b1e6ded347aa0b7676c85ab0b3d08b0fa')
    group by platform,week
    order by week desc