ArioChain Comparison - TXs Success Rate
Updated 2024-07-05
999
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
27
28
29
30
31
32
33
34
35
36
›
⌄
select
'Blast' as Chain,
sum(case when status = 'SUCCESS' then 1 else 0 end) as Succeded_TXs,
sum(case when status = 'SUCCESS' then 0 else 1 end) as Failed_TXs,
Failed_TXs/(Succeded_TXs + Failed_TXs) * 100 as Fail_Rate,
Succeded_TXs/(Succeded_TXs + Failed_TXs) * 100 as Success_Rate
from blast.core.fact_transactions
where block_timestamp >= '2024-02-29'
group by 1
union all
select
'Ethereum' as Chain,
sum(case when status = 'SUCCESS' then 1 else 0 end) as Succeded_TXs,
sum(case when status = 'SUCCESS' then 0 else 1 end) as Failed_TXs,
Failed_TXs/(Succeded_TXs + Failed_TXs) * 100 as Fail_Rate,
Succeded_TXs/(Succeded_TXs + Failed_TXs) * 100 as Success_Rate
from Ethereum.core.fact_transactions
where block_timestamp >= '2024-02-29'
group by 1
union all
select
'Arbitrum' as Chain,
sum(case when status = 'SUCCESS' then 1 else 0 end) as Succeded_TXs,
sum(case when status = 'SUCCESS' then 0 else 1 end) as Failed_TXs,
Failed_TXs/(Succeded_TXs + Failed_TXs) * 100 as Fail_Rate,
Succeded_TXs/(Succeded_TXs + Failed_TXs) * 100 as Success_Rate
from Arbitrum.core.fact_transactions
where block_timestamp >= '2024-02-29'
group by 1
union all
QueryRunArchived: QueryRun has been archived