SocioAnalyticaMonad TPS
Updated 2025-02-20
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
›
⌄
-- forked from BlockTracker / Blast TPS @ https://flipsidecrypto.xyz/BlockTracker/q/q5ZAHypGameq/blast-tps
SELECT date_trunc('hour', date) as "date",
round(avg(T_P_S),2) as "TPS"
FROM (
SELECT
date,
num_of_txns,
num_of_txns /DATEDIFF(second,min_block_timestamp,max_block_timestamp)as T_P_S
FROM (
SELECT
date_trunc('hour', 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
where block_timestamp > '2025-02-19 11:00:00.000'
GROUP BY 1
)
where DATEDIFF(second,min_block_timestamp,max_block_timestamp) > 0
)
GROUP BY 1
having "TPS" < 400
ORDER by 1 desc