LABEL | Total transactions | |
---|---|---|
1 | Total succeed transactions | 3388696 |
2 | Total failed transactions | 3936 |
Mrftiswell chain succeed vs failed tx copy copy
Updated 2025-02-07
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
›
⌄
-- forked from berachain succeed vs failed tx copy @ https://flipsidecrypto.xyz/studio/queries/d83d1bda-b58b-48cc-af6e-bd47a824963e
(
SELECT
'Total succeed transactions' as label,
count (DISTINCT tx_hash) as "Total transactions"
FROM
swell.core.fact_transactions
where
TX_SUCCEEDED = 'TRUE'
)
union all
(
SELECT
'Total failed transactions' as label,
count (DISTINCT tx_hash) as "Total transactions"
FROM
swell.core.fact_transactions
where
TX_SUCCEEDED = 'FALSE'
)
Last run: about 1 month ago
2
75B
3s