Afonso_DiazSuccess vs Failed TXNS
Updated 2025-01-05
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
›
⌄
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