flipside
Insights
Studio
Quests
For Chains
For Analysts
For Explorers
About
Log in
Sign up
flipside
developing-aquamarine
monadmetrics-JFe1_R
developing-aquamarine
Updated 2025-03-11
Copy Reference
Fork
9
1
2
3
4
5
›
⌄
SELECT
COUNT
(
*
)
AS
total_succeeded_transactions_last_24h
,
SUM
(
CASE
WHEN
tx_succeeded
=
FALSE
THEN
1
ELSE
0
END
)
AS
total_failed_transactions_last_24h
FROM
MONAD
.
testnet
.
fact_transactions
WHERE
block_timestamp
>=
DATEADD
(
'day'
,
-
1
,
CURRENT_TIMESTAMP
)
;
Results
Last run: 8 days ago
TOTAL_SUCCEEDED_TRANSACTIONS_LAST_24H
TOTAL_FAILED_TRANSACTIONS_LAST_24H
1
19269994
624994
1
1
19B
1s