D3 Team2024-03-01 07:34 AM
Updated 2024-03-01
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
›
⌄
with frist_tx as (
select
from_address,
min(block_timestamp) as "time"
from
blast.core.fact_transactions
group by
1
)
select
date_trunc('hour', time) as "Time",
count(distinct from_address) as "User",
sum(count(distinct from_address)) over(
order by
date_trunc('hour', time) asc
) as "Total Users"
from frist_tx
group by 1
order by 1
QueryRunArchived: QueryRun has been archived