hessNew Address
Updated 2025-03-05
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
›
⌄
with new as ( select block_timestamp,
from_address as user
from sei.core_evm.fact_transactions
where block_timestamp::date >= '2024-05-27'
UNION all
select block_timestamp,
to_address as user
from sei.core_evm.fact_transactions
where block_timestamp::date >= '2024-05-27'
)
,
new_address as ( select min(block_timestamp) as day,
user
from new
group by 2)
select trunc(day,'day') as daily,
count(DISTINCT user) as "New Address",
sum("New Address") over (order by daily asc) as "Cumulative New Address"
from new_address
group by 1
QueryRunArchived: QueryRun has been archived