BLOCKCHAIN | AVG_BLOCK_SPEED_MS | |
---|---|---|
1 | ethereum | 12065.477978 |
2 | solana | 437.413834 |
3 | bsc | 2995.392169 |
4 | near | 1148.877452 |
5 | avalanche | 1929.401068 |
6 | aptos | 198.585374 |
datavortexavg block speed ms
Updated 2025-04-30
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
›
⌄
WITH ethereum_blocks AS (
SELECT
BLOCK_NUMBER,
BLOCK_TIMESTAMP,
LAG(BLOCK_TIMESTAMP) OVER (ORDER BY BLOCK_TIMESTAMP) AS prev_block_timestamp
FROM
ethereum.core.fact_blocks
WHERE
BLOCK_TIMESTAMP >= DATEADD(year, -1, CURRENT_TIMESTAMP)
),
solana_blocks AS (
SELECT
BLOCK_ID,
BLOCK_TIMESTAMP,
LAG(BLOCK_TIMESTAMP) OVER (ORDER BY BLOCK_TIMESTAMP) AS prev_block_timestamp
FROM
solana.core.fact_blocks
WHERE
BLOCK_TIMESTAMP >= DATEADD(year, -1, CURRENT_TIMESTAMP)
),
bsc_blocks AS (
SELECT
BLOCK_NUMBER,
BLOCK_TIMESTAMP,
LAG(BLOCK_TIMESTAMP) OVER (ORDER BY BLOCK_TIMESTAMP) AS prev_block_timestamp
FROM
bsc.core.fact_blocks
WHERE
BLOCK_TIMESTAMP >= DATEADD(year, -1, CURRENT_TIMESTAMP)
),
near_blocks AS (
SELECT
BLOCK_ID,
BLOCK_TIMESTAMP,
LAG(BLOCK_TIMESTAMP) OVER (ORDER BY BLOCK_TIMESTAMP) AS prev_block_timestamp
FROM
Last run: 29 days ago
6
137B
91s