Afonso_DiazSuccess vs Failed TXNS
    Updated 3 days ago
    select
    'Success' as type,
    count(distinct tx_id) as transactions
    from
    aleo.core.fact_transactions
    where
    tx_succeeded
    union all

    select
    'Fail' as type,
    count(distinct tx_id) as transactions
    from
    aleo.core.fact_transactions
    where
    not tx_succeeded

    Last run: 3 days ago
    TYPE
    TRANSACTIONS
    1
    Success19636374
    2
    Fail229505
    2
    38B
    4s