rezarwzAverage Daily # of Txs
Updated 2025-02-24Copy Reference Fork
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
›
⌄
SELECT
blockchain,
avg(Daily_Active_User) as "Average Daily # of Txs",
median(Daily_Active_User) as "Median Daily # of Txs"
from
(
SELECT
'Blast' as blockchain,
block_timestamp :: date as date,
count(DISTINCT from_address) as Daily_Active_User,
count(tx_hash) as "Daily # of TXs"
FROM
blast.core.fact_transactions
where
BLOCK_TIMESTAMP :: date >= '2024-02-29'
group by
1,
2
union
all
SELECT
'Base' as blockchain,
block_timestamp :: date as date,
count(DISTINCT from_address) as Daily_Active_User,
count(tx_hash) as "Daily # of TXs"
FROM
Base.core.fact_transactions
group by
1,
2
union
all
SELECT
'Optimism' as blockchain,
block_timestamp :: date as date,
count(DISTINCT from_address) as Daily_Active_User,
QueryRunArchived: QueryRun has been archived