DATE | TYPE | ADDRESS | TXNS | |
---|---|---|---|---|
1 | 2025-03-28 00:00:00.000 | SUCCESS | 67 | 690 |
2 | 2025-03-29 00:00:00.000 | FAIL | 7 | 13 |
3 | 2025-03-29 00:00:00.000 | SUCCESS | 166 | 2456 |
4 | 2025-03-30 00:00:00.000 | SUCCESS | 166 | 3324 |
5 | 2025-03-30 00:00:00.000 | FAIL | 5 | 9 |
6 | 2025-03-31 00:00:00.000 | FAIL | 4 | 6 |
7 | 2025-03-31 00:00:00.000 | SUCCESS | 176 | 1420 |
8 | 2025-04-01 00:00:00.000 | SUCCESS | 194 | 1924 |
9 | 2025-04-01 00:00:00.000 | FAIL | 7 | 24 |
10 | 2025-04-02 00:00:00.000 | FAIL | 17 | 73 |
11 | 2025-04-02 00:00:00.000 | SUCCESS | 302 | 2556 |
12 | 2025-04-03 00:00:00.000 | FAIL | 32 | 86 |
13 | 2025-04-03 00:00:00.000 | SUCCESS | 327 | 3251 |
14 | 2025-04-04 00:00:00.000 | SUCCESS | 552 | 5106 |
15 | 2025-04-04 00:00:00.000 | FAIL | 54 | 118 |
16 | 2025-04-05 00:00:00.000 | SUCCESS | 539 | 4468 |
17 | 2025-04-05 00:00:00.000 | FAIL | 50 | 95 |
18 | 2025-04-06 00:00:00.000 | FAIL | 36 | 78 |
19 | 2025-04-06 00:00:00.000 | SUCCESS | 451 | 4454 |
20 | 2025-04-07 00:00:00.000 | SUCCESS | 579 | 4488 |
hess4. Daily Success Rate
Updated 2025-05-01
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
›
⌄
select block_timestamp::date as date,
case when (TX_SUCCEEDED = 'TRUE' or TX_SUCCEEDED is null) then 'SUCCESS' else 'FAIL' end as type,
count(DISTINCT from_address) as address,
count(DISTINCT tx_hash) as txns
from mezo.testnet.fact_transactions
group by 1,2
order by 1 asc
Last run: about 1 month ago
69
3KB
4s