AVG_TPS | MIN_TPS | MAX_TPS | |
---|---|---|---|
1 | 168.374048 | 1 | 7653 |
Monad Data Enginepuzzled-ivory
Updated 22 hours ago
99
1
2
3
4
5
6
7
8
9
10
11
12
13
›
⌄
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
1
21B
4s