BLOCK_CHAIN | DATA_DELAY_IN_MINUTES | TIMING_CUTOFF | COLOR_TYPE | |
---|---|---|---|---|
1 | arbitrum | 34 | 60 | 1 |
2 | axelar | 36 | 60 | 1 |
3 | avalanche | 28 | 60 | 1 |
4 | base | 24 | 60 | 1 |
5 | ethereum | 35 | 60 | 1 |
6 | polygon | 101 | 60 | 2 |
7 | osmosis | 377 | 60 | 3 |
8 | optimism | 19 | 60 | 1 |
9 | flow | 47 | 60 | 1 |
10 | solana | 47 | 60 | 1 |
11 | terra | 922 | 60 | 3 |
12 | near | 88 | 60 | 2 |
13 | gnosis | 47 | 60 | 1 |
14 | bsc | 54 | 60 | 1 |
15 | cosmos | 687 | 60 | 3 |
16 | thorchain | 49 | 60 | 1 |
Ant-DAO-MentDataDelay
Updated 2025-03-11
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
›
⌄
with
raw_data as (
select
*
from
(
select
'arbitrum' as block_chain,
datediff(
'minute',
max(block_timestamp),
current_timestamp()
) as data_delay_in_minutes,
60 as timing_cutoff
from
arbitrum.core.fact_event_logs
where
block_timestamp > current_date() - 7
union
select
'avalanche' as block_chain,
datediff(
'minute',
max(block_timestamp),
current_timestamp()
) as data_delay_in_minutes,
60 as timing_cutoff
from
avalanche.core.fact_event_logs
where
block_timestamp > current_date() - 7
union
select
'axelar' as block_chain,
datediff(
'minute',
Last run: 2 months ago
16
313B
46s