CHAIN | DATE | STATUS | TX_COUNT | SUCCESS_RATE | |
---|---|---|---|---|---|
1 | Base | 2025-04-13 00:00:00.000 | Succeeded | 7256731 | 94.791462 |
2 | Arbitrum | 2025-04-13 00:00:00.000 | Succeeded | 1416195 | 80.885217 |
3 | Optimism | 2025-04-13 00:00:00.000 | Succeeded | 941988 | 95.502795 |
4 | Mantle | 2025-04-13 00:00:00.000 | Succeeded | 267469 | 97.905136 |
5 | Flow | 2025-04-13 00:00:00.000 | Succeeded | 230353 | 79.865269 |
6 | Base | 2025-04-12 00:00:00.000 | Succeeded | 7431129 | 95.232328 |
7 | Arbitrum | 2025-04-12 00:00:00.000 | Succeeded | 1395854 | 85.072069 |
8 | Optimism | 2025-04-12 00:00:00.000 | Succeeded | 870448 | 96.664997 |
9 | Mantle | 2025-04-12 00:00:00.000 | Succeeded | 272558 | 98.306246 |
10 | Flow | 2025-04-12 00:00:00.000 | Succeeded | 227992 | 78.440763 |
11 | Base | 2025-04-11 00:00:00.000 | Succeeded | 7073811 | 94.916836 |
12 | Arbitrum | 2025-04-11 00:00:00.000 | Succeeded | 1670448 | 83.783049 |
13 | Optimism | 2025-04-11 00:00:00.000 | Succeeded | 891367 | 95.731962 |
14 | Mantle | 2025-04-11 00:00:00.000 | Succeeded | 273140 | 97.94563 |
15 | Flow | 2025-04-11 00:00:00.000 | Succeeded | 242835 | 79.817183 |
16 | Base | 2025-04-10 00:00:00.000 | Succeeded | 6884087 | 93.675666 |
17 | Arbitrum | 2025-04-10 00:00:00.000 | Succeeded | 1969730 | 80.01607 |
18 | Optimism | 2025-04-10 00:00:00.000 | Succeeded | 969056 | 94.612847 |
19 | Mantle | 2025-04-10 00:00:00.000 | Succeeded | 277280 | 96.969697 |
20 | Flow | 2025-04-10 00:00:00.000 | Succeeded | 252848 | 80.496641 |
adriaparcerisasflow tx vs l2 1.2
Updated 2025-04-14
99
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
›
⌄
with flow_1 as (
select distinct tx_id as tx_hash, block_timestamp, tx_succeeded
from flow.core.fact_transactions
UNION
select distinct tx_hash as tx_id, block_timestamp, tx_succeeded
from flow.core_evm.fact_transactions
),
all_txs as (
-- Flow transactions
select
'Flow' as chain,
block_timestamp,
tx_succeeded
from flow_1
UNION ALL
-- Arbitrum transactions
select
'Arbitrum' as chain,
block_timestamp,
case when status = 'SUCCESS' then true else false end as tx_succeeded
from arbitrum.core.fact_transactions
where origin_function_signature <> '0x6bf6a42d' -- exclude system transactions
UNION ALL
-- Optimism transactions
select
'Optimism' as chain,
block_timestamp,
case when status = 'SUCCESS' then true else false end as tx_succeeded
from optimism.core.fact_transactions
UNION ALL
Last run: 28 days ago
...
150
10KB
28s