Monad Data Enginepuzzled-ivory
    Updated 22 hours ago
    WITH transactions_per_second AS (
    SELECT
    DATE_TRUNC('second', block_timestamp) AS second_timestamp,
    COUNT(*) AS tx_count
    FROM MONAD.testnet.fact_transactions
    WHERE block_timestamp >= '2025-02-19 15:00:00.000' --
    GROUP BY 1
    )
    SELECT
    AVG(tx_count) AS avg_tps, --
    MIN(tx_count) AS min_tps, --
    MAX(tx_count) AS max_tps --
    FROM transactions_per_second;
    Last run: about 22 hours ago
    AVG_TPS
    MIN_TPS
    MAX_TPS
    1
    168.37404817653
    1
    21B
    4s