DAU | TX_COUNT | TX_PER_DAY | AVG_DAU | |
---|---|---|---|---|
1 | 16851841 | 2859555450 | 4126342.640693 | 24317.23088 |
h4wknetwork overview
Updated 7 days ago
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
›
⌄
select
-- date_trunc(day, block_timestamp) as date,
count(distinct tx_from) as DAU,
count(distinct tx_id) as tx_count,
tx_count/count(distinct block_timestamp::date) as tx_per_day,
DAU/count(distinct block_timestamp::date) as AVG_DAU
-- sum(DAU) over (order by date) as cumu_DAU,
-- sum(tx_count) over (order by date) as cumu_tx
from sei.core.fact_transactions
where tx_succeeded = TRUE
-- and block_timestamp >= '2023-08-01'
-- group by 1
Last run: 7 days ago
1
50B
316s