CHAIN | TYPE | Avg Tps | |
---|---|---|---|
1 | Arbitrum | Other Chain | 22.851225741935 |
2 | BSC | Other Chain | 50.412659806452 |
3 | Polygon | Other Chain | 30.770968516129 |
4 | Flow | Other Chain | 2.299305258065 |
5 | Aptos | Aptos | 45.939032322581 |
6 | Near | Other Chain | 72.207383096774 |
7 | Sei | Other Chain | 47.003553645161 |
8 | Optimism | Other Chain | 10.702044967742 |
9 | Atom | Other Chain | 0.313499032258 |
10 | Solana | Other Chain | 576.96671716129 |
11 | Base | Other Chain | 74.335790064516 |
12 | Osmosis | Other Chain | 1.597386096774 |
13 | Ethereum | Other Chain | 13.40905383871 |
14 | Avalanche | Other Chain | 2.840629451613 |
0xHaM-dSTPS
Updated 2025-04-26
999
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
›
⌄
-- forked from https://flipsidecrypto.xyz/hess/q/cILchiNxlMCI/average-success-rate
with chains as (
select date(block_timestamp) as date,
'Aptos' as chain,
count(DISTINCT TX_HASH) as total_tx,
total_tx/86400 as tps
from aptos.core.fact_transactions
where block_timestamp::date >= '2025-01-01'
group by 1,2
UNION
select date(block_timestamp) as date,
'Sei' as chain,
count(DISTINCT tx_id) as total_tx,
total_tx/86400 as tps
from sei.core.fact_transactions
where block_timestamp::date >= '2025-01-01'
and TX_SUCCEEDED = 'true'
group by 1,2
UNION
select date(block_timestamp) as date,
'Arbitrum' as chain,
count(DISTINCT tx_hash) as total_tx,
total_tx/86400 as tps
from arbitrum.core.fact_transactions
where block_timestamp::date >= '2025-01-01'
and STATUS = 'SUCCESS'
group by 1,2
UNION
select date(block_timestamp) as date,
'Optimism' as chain,
count(DISTINCT tx_hash) as total_tx,
total_tx/86400 as tps
from optimism.core.fact_transactions
where block_timestamp::date >= '2025-01-01'
and STATUS = 'SUCCESS'
group by 1,2
Last run: about 2 months ago
14
560B
455s