TRANSACTION_STATUS | FAILED_TRANSACTIONS | |
---|---|---|
1 | Failed | 105430 |
2 | Successful | 6702410 |
par_rnMonad 04
Updated 2025-02-21
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
›
⌄
SELECT
'Failed' AS transaction_status,
COUNT(DISTINCT TX_HASH) AS failed_transactions
FROM monad.testnet.fact_transactions
WHERE TX_SUCCEEDED NOT IN ('true', TRUE)
and block_timestamp >= '2025-02-19'
UNION ALL
SELECT
'Successful' AS transaction_status,
COUNT(DISTINCT TX_HASH) AS successful_transactions
FROM monad.testnet.fact_transactions
WHERE TX_SUCCEEDED IN ('true', TRUE)
and block_timestamp >= '2025-02-19'
Last run: about 2 months ago
2
42B
3s