adriaparcerisasbera vs monad 3.2
    Updated 5 days ago
    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
    CHAIN
    AVG_TIME_BETWEEN_BLOCKS_SECONDS
    TOTAL_BLOCKS
    1
    Berachain2.0610189252
    2
    Monad0.5614790319
    2
    53B
    6s