AVG_TPS_LAST_24H | |
---|---|
1 | 221.593573 |
Monad Data Enginecultural-tan
Updated 1 day ago
99
1
2
3
4
5
6
7
8
9
10
11
›
⌄
WITH tps_per_second AS (
SELECT
DATE_TRUNC('second', block_timestamp) AS second_timestamp, --
COUNT(tx_hash) AS tx_count
FROM MONAD.testnet.fact_transactions
WHERE block_timestamp >= DATEADD('day', -1, CURRENT_TIMESTAMP) --
GROUP BY second_timestamp
)
SELECT
AVG(tx_count) AS avg_tps_last_24h --
FROM tps_per_second;
Last run: 1 day ago
1
14B
3s