i_danBase DEXs: Users By Month
    Updated 2024-09-07
    SELECT
    date_trunc('mm', block_timestamp) Month,
    platform,
    COUNT(DISTINCT origin_from_address)
    FROM
    base.defi.ez_dex_swaps
    GROUP BY
    1,
    2
    ORDER BY
    1 DESC --LIMIT 100
    QueryRunArchived: QueryRun has been archived