mondovnumber of tokens traded over time
    Updated 2024-09-13
    SELECT date_trunc('month', block_timestamp) as month,
    blockchain,
    COUNT(DISTINCT token_out)
    FROM crosschain.defi.ez_dex_swaps
    WHERE lower(platform) like 'uniswap%'
    GROUP BY 1,2
    ORDER BY 1
    QueryRunArchived: QueryRun has been archived