flipside
Products
For Protocols
For Analysts
For Explorers
About
Log in
Become a Partner
flipside
Success vs Failed TXNS
Afonso_Diaz
Success vs Failed TXNS
Updated 3 days ago
Copy Reference
Fork
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
›
⌄
select
'Success'
as
type
,
count
(
distinct
tx_id
)
as
transactions
from
aleo
.
core
.
fact_transactions
where
tx_succeeded
union
all
select
'Fail'
as
type
,
count
(
distinct
tx_id
)
as
transactions
from
aleo
.
core
.
fact_transactions
where
not
tx_succeeded
Results
Last run: 3 days ago
TYPE
TRANSACTIONS
1
Success
19636374
2
Fail
229505
1
2
38B
4s