developer_violaMonthly New user
    Updated 2025-03-21
    WITH new_users AS (
    SELECT
    from_address AS user,
    MIN(DATE_TRUNC('month', block_timestamp)) AS month_cohort
    FROM kaia.core.fact_transactions
    WHERE tx_succeeded = TRUE
    GROUP BY from_address
    )

    SELECT
    month_cohort,
    COUNT(*) AS monthly_new_users
    FROM new_users
    WHERE month_cohort >= DATE '2024-08-29'
    GROUP BY month_cohort
    ORDER BY month_cohort;

    Last run: 3 months ago
    MONTH_COHORT
    MONTHLY_NEW_USERS
    1
    2024-09-01 00:00:00.000623024
    2
    2024-10-01 00:00:00.000794426
    3
    2024-11-01 00:00:00.0001307600
    4
    2024-12-01 00:00:00.0001457076
    5
    2025-01-01 00:00:00.0002222027
    6
    2025-02-01 00:00:00.0007214337
    7
    2025-03-01 00:00:00.0005954920
    7
    251B
    41s