0xHaM-dNew and Returning Users
    Updated 2025-03-20
    -- forked from New and Returning Users @ https://flipsidecrypto.xyz/studio/queries/58e86777-a238-4332-abe9-7f336120c2af

    WITH eventTb AS (
    SELECT
    BLOCK_TIMESTAMP,
    TX_HASH,
    FROM_ADDRESS as user
    FROM ronin.core.fact_transactions
    WHERE TO_ADDRESS in (
    '0x9d3936dbd9a794ee31ef9f13814233d435bd806c'
    ,'0x32950db2a7164ae833121501c797d79e7b79d74c'
    ,'0x05b0bb3c1c320b280501b86706c3551995bc8571'
    ,'0x3e0674b1ddc84b0cfd9d773bb2ce23fe8f445de3'
    )
    )
    , active_users_u as (
    SELECT
    date_trunc('day', block_timestamp) as date,
    count(DISTINCT user) as active_users
    FROM eventTb
    GROUP BY date
    )
    , new as (
    SELECT
    date_trunc('day', first_tx) as date,
    count(DISTINCT user) as new_user
    FROM (
    SELECT
    user,
    min(block_timestamp) as first_tx
    FROM eventTb
    GROUP BY 1
    )
    GROUP BY 1
    )

    Last run: 23 days ago
    DATE
    ACTIVE_USERS
    N_NEW_USER
    CUM_USERS
    RECURRING_USER
    NEW_USER_PERCENT
    RECURRING_USER_PERCENT
    Avg Active Users
    AVARAGE_7_ACTIVE_USERS
    Avg New User
    AVARAGE_7_NEW_USER
    1
    2025-03-19 00:00:00.0001078277701089481070570.71410799.285893118027.897436111837.8571396.7692311679.285
    2
    2025-03-18 00:00:00.0001067066531081781060530.61196299.388038118160.376623113194.1421404.9090911691.571
    3
    2025-03-17 00:00:00.0001083919061075251074850.83586399.164137118311.092105114765.5711414.8026321781.285
    4
    2025-03-16 00:00:00.00011627051841066191110864.45858895.541412118443.36116109.8571421.5866671949
    5
    2025-03-15 00:00:00.00011332117741014351115471.56546498.434536118472.72973116172.8571370.7432431468
    6
    2025-03-14 00:00:00.0001139891257996611127321.10273898.897262118543.30137116712.7141365.2191781366.857
    7
    2025-03-13 00:00:00.0001163611211984041151501.04072798.959273118606.555556117233.7141366.7222221318.857
    8
    2025-03-12 00:00:00.000117321856971931164650.72962299.270378118638.183099117616.8571368.9154931380.142
    9
    2025-03-11 00:00:00.0001177061281963371164251.08830598.911695118657116846.5711376.2428571344.714
    10
    2025-03-10 00:00:00.0001178012080950561157211.7656998.23431118670.782609116940.2851377.6231881274.571
    11
    2025-03-09 00:00:00.0001167111817929761148941.55683798.443163118683.573529117132.1421367.2941181132.571
    12
    2025-03-08 00:00:00.0001171001066911591160340.91033399.089667118713.014925117402.7141360.58209954.428
    13
    2025-03-07 00:00:00.000117636921900931167150.78292499.217076118737.454545117161.7141365.045455916
    14
    2025-03-06 00:00:00.0001190431640891721174031.37765398.622347118754.4117310.5711371.876923891.857
    15
    2025-03-05 00:00:00.000111929608875321113210.54320199.456799118749.8906251172541367.6875809.857
    16
    2025-03-04 00:00:00.000118362790869241175720.66744499.332556118858.158731186481379.746032800.857
    17
    2025-03-03 00:00:00.0001191441086861341180580.91150299.088498118866.16129119162.4281389.258065783.428
    18
    2025-03-02 00:00:00.000118605570850481180350.48058799.519413118861.606557119448.4281394.229508830.714
    19
    2025-03-01 00:00:00.000115413797844781146160.69056399.309437118865.883333119538.7141407.966667913.714
    20
    2025-02-28 00:00:00.000118678752836811179260.63364799.366353118924.40678119748.2851418.322034926.142
    78
    9KB
    5s