Afonso_DiazSuccess vs Failed TXNS
    Updated 2025-03-01
    select
    'Success' as type,
    count(distinct tx_hash) as transactions
    from
    ink.core.fact_transactions
    where
    tx_succeeded

    union all

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



    QueryRunArchived: QueryRun has been archived