i_danSolana Traders 2024 H1
    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 >= '2024-01-01' AND block_timestamp <= '2024-12-31'
    GROUP BY 1
    ORDER BY 1 DESC



    Last run: about 1 month ago
    MONTH
    USER_COUNT
    1
    2024-12-01 00:00:00.00016704891
    2
    2024-11-01 00:00:00.00015310017
    3
    2024-10-01 00:00:00.00023733967
    4
    2024-09-01 00:00:00.00012826141
    5
    2024-08-01 00:00:00.0009159161
    6
    2024-07-01 00:00:00.00011671888
    7
    2024-06-01 00:00:00.0008435117
    8
    2024-05-01 00:00:00.0004607241
    9
    2024-04-01 00:00:00.0004213367
    10
    2024-03-01 00:00:00.0003626550
    11
    2024-02-01 00:00:00.0001638240
    12
    2024-01-01 00:00:00.0001540337
    12
    438B
    353s