0xHaM-dMonad Testnet stats: active users
    Updated 2025-04-02
    with
    news as (
    SELECT
    distinct FROM_ADDRESS as users,
    min(trunc(block_timestamp,'d')) as debut
    from monad.testnet.fact_transactions
    -- WHERE block_timestamp < trunc(current_date,'d')
    group by 1
    ),
    news2 as (
    select distinct debut,
    count(distinct users) as new_users
    from news group by 1
    ),
    actives as (
    SELECT
    trunc(block_timestamp,'d') as week,
    count(distinct FROM_ADDRESS) as active_users
    from monad.testnet.fact_transactions x
    -- WHERE block_timestamp < trunc(current_date,'d')
    group by 1 order by 1 desc
    ),
    final as (
    select
    week,
    active_users,
    new_users,
    sum(new_users) over (order by week) as unique_users
    from actives a
    join news2 n on a.week=n.debut
    order by 1 asc
    ),
    final2 as (
    select
    week,
    active_users,new_users,
    Last run: 16 days ago
    WEEK
    ACTIVE_USERS
    NEW_USERS
    UNIQUE_USERS
    NEW_ACCOUNTS
    PCG_DIFF
    1
    2025-04-02 00:00:00.000474946434725489783982797839827 (0)0
    1
    71B
    53s