CHAIN | AVG_TIME_BETWEEN_BLOCKS_SECONDS | TOTAL_BLOCKS | |
---|---|---|---|
1 | Berachain | 2.06 | 10189252 |
2 | Monad | 0.56 | 14790319 |
adriaparcerisasbera vs monad 3.2
Updated 5 days ago
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 launch_dates AS (
SELECT 'Monad' as chain,
MIN(DATE_TRUNC('hour', BLOCK_TIMESTAMP)) as launch_date
FROM monad.testnet.fact_blocks
WHERE BLOCK_TIMESTAMP >= '2025-02-19'
UNION ALL
SELECT 'Berachain' as chain,
MIN(DATE_TRUNC('hour', BLOCK_TIMESTAMP)) as launch_date
FROM berachain.testnet.fact_blocks
WHERE BLOCK_TIMESTAMP >= '2024-06-10'
),
block_times AS (
-- Monad blocks
SELECT
'Monad' as chain,
DATEDIFF('millisecond',
LAG(BLOCK_TIMESTAMP) OVER (ORDER BY BLOCK_TIMESTAMP),
BLOCK_TIMESTAMP
) as time_diff_ms
FROM monad.testnet.fact_blocks
WHERE BLOCK_TIMESTAMP >= '2025-02-19'
UNION ALL
-- Berachain blocks
SELECT
'Berachain' as chain,
DATEDIFF('millisecond',
LAG(BLOCK_TIMESTAMP) OVER (ORDER BY BLOCK_TIMESTAMP),
BLOCK_TIMESTAMP
) as time_diff_ms
FROM berachain.testnet.fact_blocks
WHERE BLOCK_TIMESTAMP >= '2024-06-10'
Last run: 5 days ago
2
53B
6s