fantasySolana User Retention & Growth Analysis
    Updated 2025-04-23
    WITH months AS (
    SELECT
    DATEADD(month, SEQ4(), '2020-01-01') AS month_start
    FROM
    TABLE(GENERATOR(ROWCOUNT => 1000))
    WHERE
    DATEADD(month, SEQ4(), '2020-01-01') <= DATE_TRUNC('month', CURRENT_DATE)
    ),
    user_activity AS (
    SELECT
    m.month_start AS date,
    s.signer,
    DATE_TRUNC('month', s.first_tx_date) AS first_active_month
    FROM
    months m
    JOIN solana.core.ez_signers s ON s.first_tx_date <= LAST_DAY(m.month_start)
    AND s.last_tx_date >= m.month_start
    ),
    monthly_stats AS (
    SELECT
    ua.date,
    COUNT(DISTINCT ua.signer) AS mau,
    COUNT(
    DISTINCT CASE
    WHEN ua.first_active_month = ua.date THEN ua.signer
    END
    ) AS new_users,
    COUNT(
    DISTINCT CASE
    WHEN ua.first_active_month < ua.date THEN ua.signer
    END
    ) AS returning_users
    FROM
    user_activity ua
    GROUP BY
    ua.date
    Last run: about 1 month ago
    DATE
    MAU
    NEW_USERS
    RETURNING_USERS
    PREV_MAU
    MAU_GROWTH_RATE
    NEW_USERS_PCT
    RETURNING_USER_RATE
    RETENTION_RATE
    CHURN_RATE
    1
    2020-03-01 00:00:00.00018918901000
    2
    2020-04-01 00:00:00.00091091189-52010048.151.9
    3
    2020-05-01 00:00:00.0009109191001001000
    4
    2020-06-01 00:00:00.0009109191001001000
    5
    2020-07-01 00:00:00.0009109191001001000
    6
    2020-08-01 00:00:00.0009109191001001000
    7
    2020-09-01 00:00:00.0009109191001001000
    8
    2020-10-01 00:00:00.000384489384398919142241510001000
    9
    2020-11-01 00:00:00.0004086834068871796384489699.60.40.599.5
    10
    2020-12-01 00:00:00.000636054863562054343408683145699.90.11.198.9
    11
    2021-01-01 00:00:00.000118191271149051432861363605488697.22.85.294.8
    12
    2021-02-01 00:00:00.0006575684582653974914511819127-4488.611.46.393.7
    13
    2021-03-01 00:00:00.00080841176895524118859365756842385.314.718.181.9
    14
    2021-04-01 00:00:00.00039942572387464911196081808411739497314.885.2
    15
    2021-05-01 00:00:00.0002848394827095971138797739942572-2995.14.93.596.5
    16
    2021-06-01 00:00:00.0002442490522893539153136628483948-1493.76.35.494.6
    17
    2021-07-01 00:00:00.000100627078648130141457724424905-5985.914.15.894.2
    18
    2021-08-01 00:00:00.00013022371116223921399979100627072989.210.813.986.1
    19
    2021-09-01 00:00:00.000260743162453004715442691302237110094.15.911.988.1
    20
    2021-10-01 00:00:00.0002226854520417674185087126074316-1591.78.37.192.9
    62
    5KB
    451s