DATE | T_P_S | |
---|---|---|
1 | 2025-03-15 00:00:00.000 | 189.446183 |
2 | 2025-03-14 00:00:00.000 | 179.011192 |
3 | 2025-03-13 00:00:00.000 | 242.804118 |
4 | 2025-03-12 00:00:00.000 | 369.934293 |
5 | 2025-03-11 00:00:00.000 | 297.168729 |
6 | 2025-03-10 00:00:00.000 | 137.777011 |
7 | 2025-03-09 00:00:00.000 | 111.059607 |
8 | 2025-03-08 00:00:00.000 | 123.947673 |
9 | 2025-03-07 00:00:00.000 | 124.45637 |
10 | 2025-03-06 00:00:00.000 | 120.279482 |
11 | 2025-03-05 00:00:00.000 | 125.181102 |
12 | 2025-03-04 00:00:00.000 | 136.392479 |
13 | 2025-03-03 00:00:00.000 | 126.246878 |
14 | 2025-03-02 00:00:00.000 | 124.346671 |
15 | 2025-03-01 00:00:00.000 | 133.061795 |
16 | 2025-02-28 00:00:00.000 | 172.135789 |
17 | 2025-02-27 00:00:00.000 | 178.986516 |
18 | 2025-02-26 00:00:00.000 | 255.990532 |
19 | 2025-02-25 00:00:00.000 | 153.886029 |
20 | 2025-02-24 00:00:00.000 | 114.712161 |
BlockTrackertps
Updated 3 hours ago
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
›
⌄
SELECT
date,
num_of_txns/DATEDIFF(second,min_block_timestamp,max_block_timestamp) as T_P_S
FROM (
SELECT
date_trunc('{{granularity}}', block_timestamp) as date,
count(DISTINCT tx_hash) as num_of_txns,
min(block_timestamp) as min_block_timestamp,
max(block_timestamp) as max_block_timestamp
FROM monad.testnet.fact_transactions
GROUP BY 1
)
where date >= current_date - 30
order by date desc
Last run: about 3 hours ago
31
1KB
55s