hessRetention Rate (%)
Updated 2024-12-01
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 users as ( select block_timestamp,
tx_id,
attribute_value as address
from sei.core.fact_msg_attributes
where attribute_key in ('sender','fee_payer')
and tx_id not in (select DISTINCT tx_id from sei.core.fact_transactions
where fee = '0usei'
and block_timestamp::Date >= '2024-05-28')
UNION
select block_timestamp,
tx_id,
TX_FROM as address
from sei.core.fact_transactions
where fee != '0usei'
UNION
select block_timestamp,
tx_hash as tx_id,
from_address as address
from sei.core_evm.fact_transactions
where block_timestamp::Date >= '2024-05-28'
)
,
new as ( select min(block_timestamp) as date,
address
from users
group by 2
having date >= current_date - 30)
,
new_final as ( select count(DISTINCT address) as total_new
from new
where date >= current_date - 30)
,
total_users as ( select block_timestamp,
tx_id,
attribute_value as address
from sei.core.fact_msg_attributes
QueryRunArchived: QueryRun has been archived