TRANSACTIONS | SUCCESS_RATE | |
---|---|---|
1 | 76689 | 95.6943 |
Afonso_DiazSuccess Rate
Updated 2025-04-11
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
›
⌄
with
main as (
select
tx_hash,
block_timestamp,
from_address as user,
tx_fee,
tx_succeeded
from
mezo.testnet.fact_transactions
)
select
count(distinct tx_hash) as transactions,
(count(distinct iff(tx_succeeded, tx_hash, null)) / transactions) * 100 as success_rate
from
main
Last run: 17 days ago
1
17B
1s