pouya_22Polygon Block Performance - Transactions per 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
32
33
34
35
36
›
⌄
with polygon as (select block_number, tx_count, 'Polygon' as network
from polygon.core.fact_blocks
order by 1 desc
limit 1000),
flow as (select block_height as block_number, tx_count, 'Flow' as network
from flow.core.fact_blocks
order by 1 desc
limit 1000),
sol as (select block_height as block_number, tx_count, 'Solana' as network
from solana.core.fact_blocks
order by 1 desc
limit 1000),
near as (select block_id as block_number, tx_count, 'Near' as network
from near.core.fact_blocks
order by 1 desc
limit 1000),
opt as (select block_number, tx_count, 'Optimism' as network
from optimism.core.fact_blocks
order by 1 desc
limit 1000),
eth as (select block_number, tx_count, 'Ethereum' as network
from ethereum.core.fact_blocks
order by 1 desc
limit 1000),
arb as (select block_number, tx_count, 'Arbitrum' as network
from arbitrum.core.fact_blocks
order by 1 desc
limit 1000)
select row_number() over(order by block_number) as n, * from polygon
Run a query to Download Data