Afonso_DiazSuccess vs Failed TXNS Overtime
Updated 2025-04-03
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
›
⌄
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