Afonso_DiazSuccess vs Failed TXNS
    Updated 2025-01-05
    select
    'Success' as type,
    count(distinct tx_hash) as transactions
    from
    mantle.core.fact_transactions
    where
    tx_succeeded
    and block_timestamp between '{{ start_date }}' and '{{ end_date }}'

    union all

    select
    'Fail' as type,
    count(distinct tx_hash) as transactions
    from
    mantle.core.fact_transactions
    where
    not tx_succeeded
    and block_timestamp between '{{ start_date }}' and '{{ end_date }}'



    QueryRunArchived: QueryRun has been archived