Afonso_DiazSuccess vs Failed TXNS Overtime
    Updated 2025-04-03
    select *
    from (
    select
    date_trunc('month', block_timestamp) as date,
    'Success' as type,
    count(distinct tx_hash) as transactions
    from
    boba.core.fact_transactions
    where
    tx_succeeded
    group by 1, 2
    union all
    select
    date_trunc('month', block_timestamp) as date,
    'Fail' as type,
    count(distinct tx_hash) as transactions
    from
    boba.core.fact_transactions
    where
    tx_succeeded = false
    group by 1, 2
    )
    order by date, type






    QueryRunArchived: QueryRun has been archived