Blockchain | Data Lag | Data Status | Update Period | Last Dashboard Refresh | Last Block Timestamp Available | Last Block Number | |
---|---|---|---|---|---|---|---|
1 | Arbitrum | 01:57 | 🔴 Data is out of date! | 1h | 2025-04-07 09:30:03.000 | 2025-04-07 07:33:35.000 | 323798449 |
2 | Aurora | 01:34 | 🔴 Data is out of date! | 1h | 2025-04-07 09:30:03.000 | 2025-04-07 07:56:44.000 | 143649794 |
3 | Avalanche | 01:21 | 🟡 Slightly out of date! | 1h | 2025-04-07 09:30:03.000 | 2025-04-07 08:09:08.000 | 59836118 |
4 | Axelar | 01:29 | 🟡 Slightly out of date! | 1h | 2025-04-07 09:30:03.000 | 2025-04-07 08:01:24.188 | 17515229 |
5 | BSC | 00:47 | 🟢 Data is up to date! | 1h | 2025-04-07 09:30:03.000 | 2025-04-07 08:43:40.000 | 48144533 |
6 | Base | 01:17 | 🟡 Slightly out of date! | 1h | 2025-04-07 09:30:03.000 | 2025-04-07 08:13:17.000 | 28612125 |
7 | Bitcoin | 01:10 | 🟢 Data is up to date! | 1h | 2025-04-07 09:30:03.000 | 2025-04-07 08:20:36.000 | 891316 |
8 | Cosmos | 04:20 | 🟢 Data is up to date! | 24h | 2025-04-07 09:30:03.000 | 2025-04-07 05:10:05.087 | 25173875 |
9 | Ethereum | 01:32 | 🔴 Data is out of date! | 1h | 2025-04-07 09:30:03.000 | 2025-04-07 07:58:35.000 | 22215684 |
10 | Flow | 02:17 | 🔴 Data is out of date! | 1h | 2025-04-07 09:30:03.000 | 2025-04-07 07:13:27.762 | 109024799 |
11 | Gnosis | 01:39 | 🟢 Data is up to date! | 2h | 2025-04-07 09:30:03.000 | 2025-04-07 07:51:05.000 | 39433163 |
12 | Near | 02:50 | 🟢 Data is up to date! | 12h | 2025-04-07 09:30:03.000 | 2025-04-07 06:40:56.399 | 143645773 |
13 | Optimism | 01:42 | 🔴 Data is out of date! | 1h | 2025-04-07 09:30:03.000 | 2025-04-07 07:48:13.000 | 134206658 |
14 | Osmosis | 06:59 | 🟢 Data is up to date! | 12h | 2025-04-07 09:30:03.000 | 2025-04-07 02:31:19.186 | 33090588 |
15 | Polygon | 01:45 | 🔴 Data is out of date! | 1h | 2025-04-07 09:30:03.000 | 2025-04-07 07:45:39.000 | 69999460 |
16 | Sei | 01:39 | 🔴 Data is out of date! | 1h | 2025-04-07 09:30:03.000 | 2025-04-07 07:51:56.903 | 140777636 |
17 | Solana | 01:45 | 🔴 Data is out of date! | 1h | 2025-04-07 09:30:03.000 | 2025-04-07 07:45:37.000 | 331846876 |
18 | Terra | 08:16 | 🟢 Data is up to date! | 6h | 2025-04-07 09:30:03.000 | 2025-04-07 01:14:33.284 | 15051613 |
19 | Thorchain | 01:50 | 🟢 Data is up to date! | 12h | 2025-04-07 09:30:03.000 | 2025-04-07 07:40:49.072 | 20595998 |
piperBlockchain Data Status
Updated 18 hours ago
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
›
⌄
-- Thanks to @marqu, forked from https://flipsidecrypto.xyz/marqu/q/enMpSjzqEmLn/solana-nfts---last-update-info. and modified it!
WITH arbitrum_info AS (
SELECT
'Arbitrum' AS blockchain,
BLOCK_NUMBER,
BLOCK_TIMESTAMP,
FLOOR(DATEDIFF('minute', BLOCK_TIMESTAMP, CURRENT_TIMESTAMP()) / 60.0) AS hours,
MOD(DATEDIFF('minute', BLOCK_TIMESTAMP, CURRENT_TIMESTAMP()), 60.0) AS minutes,
CONCAT(IFF(hours < 10, CONCAT('0', hours::STRING), hours::STRING), ':', IFF(minutes < 10, CONCAT('0', minutes::STRING), minutes::STRING)) AS lag,
(hours*60+minutes) AS lag_minutes,
CASE
WHEN lag_minutes <= 60 THEN '🟢 Data is up to date!'
WHEN (lag_minutes > 60 AND lag_minutes <= 90) THEN '🟡 Slightly out of date!'
WHEN lag_minutes > 90 THEN '🔴 Data is out of date!'
END AS status,
'1h' AS update_period
FROM
arbitrum.core.fact_blocks
INNER JOIN arbitrum.core.fact_event_logs USING(BLOCK_NUMBER, BLOCK_TIMESTAMP)
WHERE
BLOCK_TIMESTAMP > CURRENT_DATE() - 3
ORDER BY
BLOCK_TIMESTAMP DESC NULLS LAST
LIMIT 1
),
avalanche_info AS (
SELECT
'Avalanche' AS blockchain,
BLOCK_NUMBER,
BLOCK_TIMESTAMP,
FLOOR(DATEDIFF('minute', BLOCK_TIMESTAMP, CURRENT_TIMESTAMP()) / 60.0) AS hours,
MOD(DATEDIFF('minute', BLOCK_TIMESTAMP, CURRENT_TIMESTAMP()), 60.0) AS minutes,
CONCAT(IFF(hours < 10, CONCAT('0', hours::STRING), hours::STRING), ':', IFF(minutes < 10, CONCAT('0', minutes::STRING), minutes::STRING)) AS lag,
(hours*60+minutes) AS lag_minutes,
CASE
Last run: about 18 hours agoAuto-refreshes every 12 hours
19
2KB
154s