ML6Average transactions done in a block on Networks
Updated 2022-07-25Copy Reference Fork
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
›
⌄
select '1.Average transactions done in a block on Polygon : ' as lbl, sum(tx_count)/count(*) as val
from polygon.core.fact_blocks
UNION
select '2.Average transactions done in a block on Solana : ', sum(tx_count)/count(*) as val
from solana.core.fact_blocks
UNION
select '3.Average transactions done in a block on Flow : ', sum(tx_count)/count(*) as val
from flow.core.fact_blocks
UNION
select '4.Average transactions done in a block on Ethereum : ', sum(tx_count)/count(*) as val
from ethereum.core.fact_blocks
UNION
select '5.Average transactions done in a block on Optimism : ', sum(tx_count)/count(*) as val
from optimism.core.fact_blocks
UNION
select '6.Average transactions done in a block on Arbitrum : ', sum(tx_count)/count(*) as val
from arbitrum.core.fact_blocks
order by lbl
Run a query to Download Data