freemartianAll chains Average Transaction Per Block
Updated 2022-07-23
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
›
⌄
select avg(tx_count) as Average_transaction_count, 'Polygon' as Label
from polygon.core.fact_blocks
UNION
select avg(tx_count) as Average_transaction_count, 'Optimism' as label
from optimism.core.fact_blocks
UNION
select avg(tx_count) as Average_transaction_count, 'Arbitrum' as label
from arbitrum.core.fact_blocks
UNION
select avg(tx_count) as Average_transaction_count, 'Flow' as label
from flow.core.fact_blocks
UNION
select avg(tx_count) as Average_transaction_count, 'Solana' as label
from solana.core.fact_blocks
UNION
select avg(tx_count) as Average_transaction_count, 'BSC' as label
from bsc.core.fact_blocks
UNION
select avg(tx_count) as Average_transaction_count, 'Avalanche' as label
from avalanche.core.fact_blocks
UNION
select avg(tx_count) as Average_transaction_count, 'Ethereum' as label
from ethereum.core.fact_blocks
order by AVERAGE_TRANSACTION_COUNT desc
Run a query to Download Data