TX_TYPE | TOTAL_TRANSACTIONS | SUCCESSFUL_TRANSACTIONS | FAILED_TRANSACTIONS | SUCCESS_RATE | FAILURE_RATE | |
---|---|---|---|---|---|---|
1 | execute | 18896713 | 18672055 | 224658 | 98.81 | 1.19 |
2 | deploy | 244 | 244 | 0 | 100 | 0 |
daviramaTotal Transactions by Type and Success Rate
Updated 2025-04-14
99
1
2
3
4
5
6
7
8
9
10
11
›
⌄
SELECT
tx_type,
COUNT(*) AS total_transactions,
COUNT(CASE WHEN tx_succeeded = TRUE THEN 1 END) AS successful_transactions,
COUNT(CASE WHEN tx_succeeded = FALSE THEN 1 END) AS failed_transactions,
ROUND((COUNT(CASE WHEN tx_succeeded = TRUE THEN 1 END) * 100.0 / COUNT(*)), 2) AS success_rate,
ROUND((COUNT(CASE WHEN tx_succeeded = FALSE THEN 1 END) * 100.0 / COUNT(*)), 2) AS failure_rate
FROM ALEO.core.fact_transactions
GROUP BY tx_type
ORDER BY total_transactions DESC;
Last run: 2 months ago
2
76B
3s