zakkisyed#3 Polygon: Avg txn in a block
Updated 2022-07-26
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
›
⌄
select polygon_avg,
solana_avg,
arbitrum_avg
from
(
select avg(tx_count) as polygon_avg, min(tx_count), max(tx_count)
from polygon.core.fact_blocks
where block_timestamp >= '2022-11-01'
) as polygon
left join
(
select avg(tx_count) as solana_avg, min(tx_count), max(tx_count)
from solana.core.fact_blocks
where block_timestamp >= '2022-11-01'
) as solana
left join
(
select avg(tx_count) as arbitrum_avg, min(tx_count), max(tx_count)
from arbitrum.core.fact_blocks
where block_timestamp >= '2022-11-01'
) as arbitrum
Run a query to Download Data