日期 | 新增用户数 | |
---|---|---|
1 | 2025-03-25 | 2420734 |
2 | 2025-03-24 | 5059610 |
3 | 2025-03-23 | 4969755 |
4 | 2025-03-22 | 6123850 |
5 | 2025-03-21 | 5362836 |
6 | 2025-03-20 | 3752244 |
7 | 2025-03-19 | 3577319 |
8 | 2025-03-18 | 3367298 |
1999_eth最近一周新增用户
Updated 2 days ago
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
›
⌄
with first_tx_date as (
select
FROM_ADDRESS,
min(to_char(convert_timezone('UTC', 'Asia/Shanghai', block_timestamp), 'YYYY-MM-DD')) as first_tx_day
from
monad.testnet.fact_transactions
where
TX_SUCCEEDED=true
group by
FROM_ADDRESS
)
select
to_char(convert_timezone('UTC', 'Asia/Shanghai', t.block_timestamp), 'YYYY-MM-DD') as "日期",
count(DISTINCT f.FROM_ADDRESS) as "新增用户数"
from
first_tx_date f
join
monad.testnet.fact_transactions t
on
f.FROM_ADDRESS = t.FROM_ADDRESS
where
TX_SUCCEEDED=true
and to_char(convert_timezone('UTC', 'Asia/Shanghai', t.block_timestamp), 'YYYY-MM-DD') = f.first_tx_day
and f.first_tx_day >= current_date() - 7
group by
to_char(convert_timezone('UTC', 'Asia/Shanghai', t.block_timestamp), 'YYYY-MM-DD')
order by
"日期" desc;
Last run: 2 days ago
8
185B
43s