WEEK | ACTIVE_USERS | NEW_USERS | UNIQUE_USERS | NEW_ACCOUNTS | PCG_DIFF | |
---|---|---|---|---|---|---|
1 | 2025-04-02 00:00:00.000 | 4749464 | 3472548 | 97839827 | 97839827 (0) | 0 |
0xHaM-dMonad Testnet stats: active users
Updated 2025-04-02
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
›
⌄
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
1
71B
53s