permarysubjective-tomato
    Updated 2025-04-03
    WITH first_login AS (
    -- Identify the first login date for each user
    SELECT
    from_address,
    MIN(DATE_TRUNC('day', block_timestamp)) AS first_login_date
    FROM ronin.core.fact_transactions
    WHERE
    to_address = '0x02790f32ad7e7eaaecfb0ad21950829932f1a2ee'
    AND tx_succeeded = true
    GROUP BY from_address
    ),

    daily_logins AS (
    -- Get all successful logins per day
    SELECT
    DATE_TRUNC('day', block_timestamp) AS login_date,
    from_address
    FROM ronin.core.fact_transactions
    WHERE
    to_address = '0x02790f32ad7e7eaaecfb0ad21950829932f1a2ee'
    AND tx_succeeded = true
    ),

    unique_users_per_day AS (
    -- Find the first time each user logs in and track daily new users
    SELECT
    first_login_date AS login_date,
    from_address
    FROM first_login
    ),

    cumulative_users AS (
    -- Accumulate distinct users over time
    SELECT
    ulp.login_date,
    COUNT(DISTINCT ulp.from_address) AS new_users,
    Last run: 2 months ago
    LOGIN_DATE
    TOTAL_USERS
    CUMULATIVE_USERS
    1
    2025-04-03 00:00:00.0001726413269133
    2
    2025-04-02 00:00:00.0001794513269067
    3
    2025-04-01 00:00:00.0001862233268990
    4
    2025-03-31 00:00:00.0001854453268369
    5
    2025-03-30 00:00:00.0001916143267950
    6
    2025-03-29 00:00:00.0002089383267525
    7
    2025-03-28 00:00:00.0002129293265975
    8
    2025-03-27 00:00:00.0002077973263709
    9
    2025-03-26 00:00:00.0002076173263336
    10
    2025-03-25 00:00:00.0002140173262909
    11
    2025-03-24 00:00:00.0002124773261881
    12
    2025-03-23 00:00:00.0002195843261112
    13
    2025-03-22 00:00:00.0002107193259491
    14
    2025-03-21 00:00:00.0002098813258903
    15
    2025-03-20 00:00:00.0002180173256926
    16
    2025-03-19 00:00:00.0002215163256325
    17
    2025-03-18 00:00:00.0002208603253815
    18
    2025-03-17 00:00:00.0002170013249809
    19
    2025-03-16 00:00:00.0002158283248491
    20
    2025-03-15 00:00:00.0002148503247636
    ...
    183
    8KB
    12s