AVG_TPS | MIN_TPS | MAX_TPS | |
---|---|---|---|
1 | 40.452457 | 1 | 3764 |
Updated 2025-02-21
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, -- میانگین TPS
MIN(tx_count) AS min_tps, -- کمترین مقدار TPS
MAX(tx_count) AS max_tps -- بیشترین مقدار TPS
FROM transactions_per_second;
Last run: 2 months ago
1
20B
4s