i_danSolana Traders 2025
    Updated 2025-04-24
    WITH swaps AS (
    SELECT
    block_timestamp
    , tx_id
    , swapper
    , swap_program
    FROM solana.defi.ez_dex_swaps
    UNION ALL
    SELECT
    block_timestamp
    , tx_id
    , swapper
    , 'jupiter' AS swap_program
    FROM solana.defi.fact_swaps_jupiter_summary
    )

    SELECT
    date_trunc(month, block_timestamp) AS month
    -- , swap_program
    , COUNT(DISTINCT swapper) AS User_Count
    FROM swaps
    WHERE block_timestamp >= '2025-01-01'
    GROUP BY 1
    ORDER BY 1 DESC
    Last run: about 1 month ago
    MONTH
    USER_COUNT
    1
    2025-04-01 00:00:00.0007627882
    2
    2025-03-01 00:00:00.00012419685
    3
    2025-02-01 00:00:00.00018886065
    4
    2025-01-01 00:00:00.00022298935
    4
    148B
    414s