feyikemiModule 2 - Volume Traded
    Updated 2024-03-20
    SELECT
    Date_trunc('Month', BLOCK_TIMESTAMP) AS Month,
    SUM(AMOUNT_IN_USD) AS Volume_Traded
    from
    arbitrum.defi.ez_dex_swaps
    where
    BLOCK_TIMESTAMP :: Date >= '2024-01-01'
    GROUP BY
    1

    QueryRunArchived: QueryRun has been archived