CHAIN | DATE | STATUS | TX_COUNT | SUCCESS_RATE | |
---|---|---|---|---|---|
1 | Base | 2025-05-18 00:00:00.000 | Succeeded | 8035311 | 90.941265 |
2 | Arbitrum | 2025-05-18 00:00:00.000 | Succeeded | 1599519 | 77.012435 |
3 | Optimism | 2025-05-18 00:00:00.000 | Succeeded | 952376 | 94.909971 |
4 | Flow | 2025-05-18 00:00:00.000 | Succeeded | 306063 | 72.990144 |
5 | Mantle | 2025-05-18 00:00:00.000 | Succeeded | 237127 | 97.304029 |
6 | Base | 2025-05-17 00:00:00.000 | Succeeded | 7525177 | 93.335008 |
7 | Arbitrum | 2025-05-17 00:00:00.000 | Succeeded | 1526693 | 77.139251 |
8 | Optimism | 2025-05-17 00:00:00.000 | Succeeded | 892752 | 95.713564 |
9 | Flow | 2025-05-17 00:00:00.000 | Succeeded | 265059 | 73.37578 |
10 | Mantle | 2025-05-17 00:00:00.000 | Succeeded | 232032 | 98.281997 |
11 | Base | 2025-05-16 00:00:00.000 | Succeeded | 8334159 | 93.928687 |
12 | Arbitrum | 2025-05-16 00:00:00.000 | Succeeded | 1592323 | 79.61205 |
13 | Optimism | 2025-05-16 00:00:00.000 | Succeeded | 908238 | 93.460316 |
14 | Flow | 2025-05-16 00:00:00.000 | Succeeded | 274962 | 70.677596 |
15 | Mantle | 2025-05-16 00:00:00.000 | Succeeded | 242712 | 97.909985 |
16 | Base | 2025-05-15 00:00:00.000 | Succeeded | 8943747 | 93.619568 |
17 | Arbitrum | 2025-05-15 00:00:00.000 | Succeeded | 1852862 | 76.103647 |
18 | Optimism | 2025-05-15 00:00:00.000 | Succeeded | 900891 | 91.328982 |
19 | Flow | 2025-05-15 00:00:00.000 | Succeeded | 298232 | 66.178774 |
20 | Mantle | 2025-05-15 00:00:00.000 | Succeeded | 245597 | 96.895442 |
adriaparcerisasflow tx vs l2 1.2
Updated 2 days ago
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 tx_succeeded = 'TRUE' 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 tx_succeeded = 'TRUE' then true else false end as tx_succeeded
from optimism.core.fact_transactions
UNION ALL
Last run: 2 days ago
...
150
10KB
6s