messarinew vs returning users copy
    Updated 2 days ago
    -- forked from BlockTracker / new vs returning users @ https://flipsidecrypto.xyz/BlockTracker/q/AgcU2zisUql-/new-vs-returning-users

    with DAU_u as (
    SELECT
    date_trunc('{{granularity}}', block_timestamp) as date,
    count(DISTINCT from_address) as DAU
    FROM monad.testnet.fact_transactions
    where date >= '2025-02-18'
    GROUP BY date
    )
    ,new as (
    SELECT
    date_trunc('{{granularity}}', first_tx) as date,
    count(DISTINCT user) as new_user
    FROM (
    SELECT
    from_address as user,
    min(block_timestamp) as first_tx
    FROM monad.testnet.fact_transactions
    GROUP BY 1)
    where date >= '2025-02-18'
    GROUP BY 1)

    SELECT
    a.date,
    Dau,
    coalesce(new_user,0) as new_account,
    sum(new_account) over (ORDER by date) as cum_account,
    Dau - new_account as returning_account,
    100 * new_account / Dau as new_account_percent,
    100 * returning_account / Dau as returning_account_percent
    -- avg(Dau)over(ORDER BY date) as "daily avg DAU",
    -- AVG(Dau) over (ORDER BY date ROWS BETWEEN 7 PRECEDING AND CURRENT ROW) as avarage_7_Dau,
    -- avg(new_account)over(ORDER BY date) as "daily avg new account",
    -- AVG(new_account) over (ORDER BY date ROWS BETWEEN 7 PRECEDING AND CURRENT ROW) as avarage_7_new_account
    FROM DAU_u a
    Last run: 2 days ago
    DATE
    DAU
    NEW_ACCOUNT
    CUM_ACCOUNT
    RETURNING_ACCOUNT
    NEW_ACCOUNT_PERCENT
    RETURNING_ACCOUNT_PERCENT
    1
    2025-04-01 00:00:00.0003484173229998890928704118418566.01245133.987549
    2
    2025-03-31 00:00:00.0008364674641784888628716194682676.7256223.27438
    3
    2025-03-30 00:00:00.0007197912519345082210868200446272.15217427.847826
    4
    2025-03-29 00:00:00.0006994690476489577017418222979568.12160431.878396
    5
    2025-03-28 00:00:00.0006159272345647872252523270279456.11828843.881712
    6
    2025-03-27 00:00:00.0007034082475293968796045228114367.57013932.429861
    7
    2025-03-26 00:00:00.0006383823415225664043106223156765.04340734.956593
    8
    2025-03-25 00:00:00.0007471725527512259890850219660370.60112629.398874
    9
    2025-03-24 00:00:00.0007083725512866354615728195506272.40065127.599349
    10
    2025-03-23 00:00:00.0007224312524606149487065197825172.61675627.383244
    11
    2025-03-22 00:00:00.0007690269566665144241004202361873.68599226.314008
    12
    2025-03-21 00:00:00.0006775006479115838574353198384870.71813729.281863
    13
    2025-03-20 00:00:00.0006572545469893833783195187360771.49343228.506568
    14
    2025-03-19 00:00:00.0005280331332983429084257195049763.06108536.938915
    15
    2025-03-18 00:00:00.0005534359335095125754423218340860.54813239.451868
    16
    2025-03-17 00:00:00.0004808529294316522403472186536461.2071838.79282
    17
    2025-03-16 00:00:00.0004615020297592819460307163909264.48353435.516466
    18
    2025-03-15 00:00:00.0004944542276888316484379217565955.99877644.001224
    19
    2025-03-14 00:00:00.0003375447146604213715496190940543.43252956.567471
    20
    2025-03-13 00:00:00.0003646551170802912249454193852246.83957553.160425
    43
    3KB
    40s