Yousefi_1994Average Transactions Per Block (TPB)
Updated 2022-07-25
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
avg(tx_count) as avg_tpb
from polygon.core.fact_blocks
where block_timestamp::date <= current_date - 1
order by block_number desc
limit 1000000
),
ethereum as (
select
avg(tx_count) as avg_tpb
from ethereum.core.fact_blocks
where block_timestamp::date <= current_date - 1
order by block_number desc
limit 1000000
),
solana as (
select
avg(tx_count) as avg_tpb
from solana.core.fact_blocks
where block_timestamp::date <= current_date - 1
order by block_id desc
limit 1000000
),
flow as (
select
avg(tx_count) as avg_tpb
from flow.core.fact_blocks
where block_timestamp::date <= current_date - 1
order by block_height desc
limit 1000000
),
osmosis as (
select
avg(tx_count) as avg_tpb
from osmosis.core.fact_blocks
Run a query to Download Data