BLOCKCHAIN | Average Tx per User | |
---|---|---|
1 | Blast | 122.932915 |
2 | Base | 14.384908 |
3 | Optimism | 33.093012 |
4 | Arbitrum | 30.84833 |
rezarwzAverage Tx per User
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,
"# of TXs" / Active_User as "Average Tx per User"
from
(
SELECT
'Blast' as blockchain,
count(DISTINCT from_address) as Active_User,
count(tx_hash) as "# of TXs"
FROM
blast.core.fact_transactions
group by
1
union
all
SELECT
'Base' as blockchain,
count(DISTINCT from_address) as Active_User,
count(tx_hash) as "# of TXs"
FROM
Base.core.fact_transactions
group by
1
union
all
SELECT
'Optimism' as blockchain,
count(DISTINCT from_address) as Active_User,
count(tx_hash) as "# of TXs"
FROM
optimism.core.fact_transactions
group by
1
union
all
SELECT
Last run: 2 months ago
4
86B
331s