最高TPS | 最高交易量区块编号 | 最近一小时平均TPS | 最近24小时平均TPS | |
---|---|---|---|---|
1 | 9998 | 5564429 | 93 | 112 |
1999_ethunderground-tomato
Updated 2025-03-14
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
›
⌄
WITH recent_time_range AS (
SELECT
MAX(block_timestamp) - INTERVAL '1 hour' AS recent_hour_start,
MAX(block_timestamp) - INTERVAL '24 hour' AS recent_day_start
FROM
monad.testnet.fact_transactions
),
max_block_tx AS (
SELECT
block_number AS max_tx_block_number,
COUNT(*) AS max_tx_per_block
FROM
monad.testnet.fact_transactions
WHERE
TX_SUCCEEDED = true
GROUP BY
block_number
ORDER BY
max_tx_per_block DESC
LIMIT 1
),
recent_hour AS (
SELECT
DATE_TRUNC('hour', convert_timezone('UTC', 'Asia/Shanghai', block_timestamp)) AS hour,
COUNT(*) AS tx_count
FROM
monad.testnet.fact_transactions
WHERE
TX_SUCCEEDED = true
AND block_timestamp >= (SELECT recent_hour_start FROM recent_time_range)
GROUP BY
DATE_TRUNC('hour', convert_timezone('UTC', 'Asia/Shanghai', block_timestamp))
),
hourly_tps AS (
SELECT
AVG(tx_count) / 3600.0 AS tps_per_second_hourly
Last run: 3 days ago
1
23B
10s