fantasySolana Activation Pattern
    Updated 2025-06-05
    WITH user_tx AS (
    SELECT
    signer,
    first_tx_date,
    last_tx_date,
    num_txs,
    DATEDIFF(day, first_tx_date, last_tx_date) AS active_days
    FROM
    solana.core.ez_signers
    ),
    activated_users AS (
    SELECT
    signer,
    first_tx_date,
    last_tx_date,
    num_txs,
    active_days
    FROM
    user_tx
    WHERE
    num_txs >= 2 -- At least 2 transactions
    AND active_days <= 7 -- Within 7 days of activity
    ),
    monthly_activity AS (
    SELECT
    DATE_TRUNC('month', first_tx_date) AS cohort_month,
    COUNT(DISTINCT signer) AS monthly_new_users,
    COUNT(
    DISTINCT CASE
    WHEN num_txs >= 2
    AND active_days <= 7 THEN signer
    END
    ) AS activated_users
    FROM
    user_tx
    GROUP BY
    Last run: 11 days ago
    DATE
    MONTHLY_NEW_USERS
    ACTIVATED_USERS
    ACTIVATION_RATE
    1
    2020-03-01 00:00:00.000189157.936508
    2
    2020-10-01 00:00:00.00038439816290.42378
    3
    2020-11-01 00:00:00.0004068877820.192191
    4
    2020-12-01 00:00:00.000635620565801710.352356
    5
    2021-01-01 00:00:00.00011490514201929617.573592
    6
    2021-02-01 00:00:00.00058265394233577.266012
    7
    2021-03-01 00:00:00.00068955244644566.735616
    8
    2021-04-01 00:00:00.0003874649135886659.26191
    9
    2021-05-01 00:00:00.00027095971328481912.122906
    10
    2021-06-01 00:00:00.00022893539261013711.401195
    11
    2021-07-01 00:00:00.00086481303329463.849919
    12
    2021-08-01 00:00:00.000116223925578824.800062
    13
    2021-09-01 00:00:00.0002453004711600454.729078
    14
    2021-10-01 00:00:00.000204176744245492.079321
    15
    2021-11-01 00:00:00.000203531713317761.630095
    16
    2021-12-01 00:00:00.000169172403903402.30735
    17
    2022-01-01 00:00:00.0002256443512157265.387797
    18
    2022-02-01 00:00:00.000304313648777222.884268
    19
    2022-03-01 00:00:00.000302500798676582.868283
    20
    2022-04-01 00:00:00.0006280268813533462.154917
    58
    3KB
    246s