fantasySolana Activation
    Updated 2025-04-08
    WITH user_tx AS(
    SELECT
    signer,
    first_tx_date,
    COUNT(*) AS total_tx,
    DATEDIFF(day, first_tx_date, last_tx_date) AS active_days
    FROM
    solana.core.ez_signers
    GROUP BY
    signer,
    first_tx_date,
    last_tx_date
    )
    SELECT
    DATE_TRUNC('month', first_tx_date) AS cohort_month,
    COUNT(DISTINCT signer) AS activated_users
    FROM
    user_tx
    WHERE
    total_tx >= 1
    AND active_days <= 7
    GROUP BY
    cohort_month
    ORDER BY
    cohort_month
    Last run: about 2 months ago
    No Data to Display
    0
    2B
    59s