Voicedinappropriate-turquoise
Updated 2024-10-25
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
›
⌄
(
SELECT
'Total succeed transactions' as label,
count (DISTINCT tx_hash) as "Total transactions"
FROM
berachain.testnet.fact_transactions
where
TX_SUCCEEDED = 'TRUE'
)
union all
(
SELECT
'Total failed transactions' as label,
count (DISTINCT tx_hash) as "Total transactions"
FROM
berachain.testnet.fact_transactions
where
TX_SUCCEEDED = 'FALSE'
)
QueryRunArchived: QueryRun has been archived