TYPE | CHAIN | AVG(AVG_TIME) | |
---|---|---|---|
1 | Other Chains | Polygon | 2.196239824027 |
2 | Sei | Sei | 0.427223120135 |
3 | Other Chains | Osmosis | 3.336533096447 |
4 | Other Chains | Avlanche | 2.01674928088 |
5 | Other Chains | Cosmos | 6.046364115059 |
6 | Other Chains | Optimism | 2 |
7 | Other Chains | Arbitrum | 0.257272522843 |
8 | Other Chains | Solana | 0.434332568528 |
hessBLOCK TIME PER CHAIN AVG
Updated 2025-03-20
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
›
⌄
-- Credited #M-Zamani
with final as (select date(a.block_timestamp) as date,'Sei' as chain, avg(datediff(second,a.block_timestamp, b.block_timestamp)) as avg_time
from sei.core.fact_blocks a, sei.core.fact_blocks b
where a.block_id = b.block_id-1
and a.block_timestamp::date >= '2023-08-15'
and b.block_timestamp::date >= '2023-08-15'
group by 1,2
UNION
select date(a.block_timestamp) as date,'Osmosis' as chain, avg(datediff(second,a.block_timestamp, b.block_timestamp)) as avg_time
from osmosis.core.fact_blocks a, osmosis.core.fact_blocks b
where a.block_id = b.block_id-1
and a.block_timestamp::date >= '2023-08-15'
and b.block_timestamp::date >= '2023-08-15'
group by 1,2
UNION
select date(a.block_timestamp) as date,'Cosmos' as chain, avg(datediff(second,a.block_timestamp, b.block_timestamp)) as avg_time
from cosmos.core.fact_blocks a, cosmos.core.fact_blocks b
where a.block_id = b.block_id-1
and a.block_timestamp::date >= '2023-08-15'
and b.block_timestamp::date >= '2023-08-15'
group by 1,2
UNION
select date(a.block_timestamp) as date,'Avlanche' as chain, avg(datediff(second,a.block_timestamp, b.block_timestamp)) as avg_time
from avalanche.core.fact_blocks a, avalanche.core.fact_blocks b
where a.block_number = b.block_number-1
and a.block_timestamp::date >= '2023-08-15'
and b.block_timestamp::date >= '2023-08-15'
group by 1,2
UNION
select date(a.block_timestamp) as date,'Arbitrum' as chain, avg(datediff(second,a.block_timestamp, b.block_timestamp)) as avg_time
from arbitrum.core.fact_blocks a, arbitrum.core.fact_blocks b
where a.block_number = b.block_number-1
and a.block_timestamp::date >= '2023-08-15'
and b.block_timestamp::date >= '2023-08-15'
group by 1,2
UNION
Last run: 27 days ago
8
311B
113s