BLOCKCHAIN | Average Daily # of Txs | Median Daily # of Txs | |
---|---|---|---|
1 | Blast | 47186.712707 | 31480.5 |
2 | Arbitrum | 170051.793129 | 119562 |
3 | Base | 509925.938808 | 332304 |
4 | Optimism | 58189.900166 | 62318.5 |
rezarwzAverage Daily # of Txs
Updated 2025-02-24
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,
Last run: 2 months ago
4
130B
240s