BLOCKCHAIN | AVG(DIFF) | MIN(DIFF) | MAX(DIFF) | MAX(DIFF) - AVG(DIFF) | |
---|---|---|---|---|---|
1 | Near | 1.131963 | 0 | 12 | 10.868037 |
2 | Avalanche | 1.529029 | 0 | 25 | 23.470971 |
3 | Flow | 0.800411 | 0 | 9 | 8.199589 |
4 | Aptos | 0.131281 | 0 | 4 | 3.868719 |
5 | Solana | 0.398827 | 0 | 6 | 5.601173 |
6 | Ethereum | 12.056095 | 12 | 36 | 23.943905 |
7 | Binance Smart Chain | 3.000728 | 3 | 7 | 3.999272 |
8 | Sei | 0.496209 | 0 | 341 | 340.503791 |
Ali3NTime Between Blocks (L1s Blocks Speed Comparison)
Updated 2025-04-28
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 avalanchet1 as (select block_timestamp as date1,
lag (block_timestamp) over (order by block_timestamp) as date2,
datediff (second,date2,date1) as Diff
from avalanche.core.fact_blocks
where block_timestamp >= '2025-04-01'),
avalanchet2 as (select avg(Diff),min(Diff),max(Diff),max(diff) - avg(diff) from avalanchet1),
neart1 as (select block_timestamp as date1,
lag (block_timestamp) over (order by block_timestamp) as date2,
datediff (second,date2,date1) as Diff
from near.core.fact_blocks
where block_timestamp >= '2025-04-01'),
neart2 as (select avg(Diff),min(Diff),max(Diff),max(diff) - avg(diff) from neart1),
Flowt1 as (select block_timestamp as date1,
lag (block_timestamp) over (order by block_timestamp) as date2,
datediff (second,date2,date1) as Diff
from flow.core.fact_blocks
where block_timestamp >= '2025-04-01'),
Flowt2 as (select avg(Diff),min(Diff),max(Diff),max(diff) - avg(diff) from Flowt1),
Solt1 as (select block_timestamp as date1,
lag (block_timestamp) over (order by block_timestamp) as date2,
datediff (second,date2,date1) as Diff
from solana.core.fact_blocks
where block_timestamp >= '2025-04-01'),
Solt2 as (select avg(Diff),min(Diff),max(Diff) ,max(diff) - avg(diff) from Solt1),
Etht1 as (select block_timestamp as date1,
lag (block_timestamp) over (order by block_timestamp) as date2,
datediff (second,date2,date1) as Diff
from ethereum.core.fact_blocks
Last run: about 2 months ago
8
287B
13s