0xHaM-dNew and Returning Users copy
    Updated 2025-04-24
    with event as (
    select
    block_timestamp,
    trader_address as user,
    from ton.defi.fact_dex_trades
    where project = 'dedust'
    and event_type = 'trade'
    )
    , active_users_u as (
    SELECT
    date_trunc('week', block_timestamp) as date,
    count(DISTINCT user) as active_users
    FROM event
    GROUP BY date
    )
    , new as (
    SELECT
    date_trunc('week', first_tx) as date,
    count(DISTINCT user) as new_user
    FROM (
    SELECT
    user,
    min(block_timestamp) as first_tx
    FROM event
    GROUP BY 1
    )
    GROUP BY 1
    )

    SELECT
    a.date,
    active_users,
    coalesce(new_user,0) as n_new_user,
    sum(n_new_user) over (ORDER by date) as cum_users,
    active_users - n_new_user as recurring_user,
    100 * n_new_user / active_users as new_user_percent,
    Last run: about 1 month 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-04-21 00:00:00.000797539871256919398849.9937350.0062734918.04347813426.71418216.2173916305.428
    2
    2025-04-14 00:00:00.0001431480871252932622756.49713643.50286435314.26470613942.28518425.4705886242.428
    3
    2025-04-07 00:00:00.00017620103931244845722758.98410941.01589135627.7014931390218579.7761195762.428
    4
    2025-03-31 00:00:00.0001579078481234452794249.70234350.29765735900.54545513399.85718703.8181824925.714
    5
    2025-03-24 00:00:00.0001355948621226604869735.85810264.14189836209.93846213905.57118870.8307694652.285
    6
    2025-03-17 00:00:00.0001140939171221742749234.33254465.66745636563.8593751560819089.718755373.714
    7
    2025-03-10 00:00:00.0001332050441217825827637.86786862.13213236963.14285718596.71419330.5555566665.142
    8
    2025-03-03 00:00:00.0001158435461212781803830.61118869.38881237344.48387127578.42819560.98387113393.285
    9
    2025-02-24 00:00:00.0001403247271209235930533.68728666.31271437766.78688531442.14219823.5245915421.857
    10
    2025-02-17 00:00:00.0001410545361204508956932.15880967.84119138162.36666734725.71420075.13333317125.428
    11
    2025-02-10 00:00:00.00019330593411999721339630.69839669.30160438570.11864436278.85720338.50847517546.285
    12
    2025-02-03 00:00:00.00025476991211940381556438.90720761.09279338901.84482837816.85720586.86206918400.571
    13
    2025-01-27 00:00:00.000323301295711841261937340.07732859.92267239137.38596538539.14220774.14035119166.857
    14
    2025-01-20 00:00:00.000761925214111711692405168.43369431.56630639258.94642937868.28520913.73214319104.571
    15
    2025-01-13 00:00:00.000386301774611190282088445.9383954.0616138587.43636430598.85720345.96363612986.714
    16
    2025-01-06 00:00:00.000370171665211012822036544.98473755.01526338586.64814829714.57120394.11111112189.142
    17
    2024-12-30 00:00:00.00024977748210846301749529.95555970.04444138616.26415128804.57120464.71698111493.142
    18
    2024-12-23 00:00:00.000300961191410771481818239.58665660.41334438878.5576923113220714.38461513032.857
    19
    2024-12-16 00:00:00.000305321527610652341525650.03275349.96724739050.76470632042.57120886.94117613650
    20
    2024-12-09 00:00:00.000276341252110499581511345.31012554.68987539221.1432702.85720999.1613681.714
    69
    8KB
    4s