nitsBlock Stats
Updated 2022-06-28
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
›
⌄
with ava as
(
SELECT avg(tx_count) as avg_txs_per_block,
max(tx_count) as max_txs_per_block,
min(tx_count) as min_txs_per_block, 'avalnche' as chain
from avalanche.core.fact_blocks),
opt as
(
SELECT avg(tx_count) as avg_txs_per_block,
max(tx_count) as max_txs_per_block,
min(tx_count) as min_txs_per_block, 'optimism' as chain
from optimism.core.fact_blocks),
arb as
(
SELECT avg(tx_count) as avg_txs_per_block,
max(tx_count) as max_txs_per_block,
min(tx_count) as min_txs_per_block, 'arbitrum' as chain
from arbitrum.core.fact_blocks)
,
poly as
(
SELECT avg(tx_count) as avg_txs_per_block,
max(tx_count) as max_txs_per_block,
min(tx_count) as min_txs_per_block, 'polygon' as chain
from polygon.core.fact_blocks)
,
bsc as
(
SELECT avg(tx_count) as avg_txs_per_block,
max(tx_count) as max_txs_per_block,
min(tx_count) as min_txs_per_block, 'bsc' as chain
from bsc.core.fact_blocks)
,
osm as
(
SELECT avg(tx_count) as avg_txs_per_block,
Run a query to Download Data