TXS | SUCCESS | FAILED | SUCCESS_RATE | |
---|---|---|---|---|
1 | 666606244 | 623340964 | 43265280 | 93.5096 |
Sbhn_NPyawning-amaranth
Updated 2025-02-02
9
1
2
3
4
5
6
7
8
›
⌄
select
count(DISTINCT tx_hash) as txs,
count(DISTINCT case when tx_succeeded then tx_hash end) as success,
count(DISTINCT case when tx_succeeded='false' then tx_hash end) as failed,
(success/txs)*100 as success_rate
from berachain.testnet.fact_transactions
where block_timestamp::date >= '2024-06-01'
Last run: 10 days ago
1
40B
716s