par_rnMantle 04
    Updated 2025-03-28
    SELECT
    'Failed' AS transaction_status,
    COUNT(DISTINCT TX_HASH) AS failed_transactions
    FROM mantle.core.fact_transactions
    WHERE TX_SUCCEEDED NOT IN ('true', TRUE)
    and block_timestamp >= current_date - 30

    UNION ALL

    SELECT
    'Successful' AS transaction_status,
    COUNT(DISTINCT TX_HASH) AS successful_transactions
    FROM mantle.core.fact_transactions
    WHERE TX_SUCCEEDED IN ('true', TRUE)
    and block_timestamp >= current_date - 30

    Last run: 20 days ago
    TRANSACTION_STATUS
    FAILED_TRANSACTIONS
    1
    Failed332458
    2
    Successful12365127
    2
    43B
    3s