TABLE_NAME | MINS_BEHIND | |
---|---|---|
1 | fact_blocks | 33.533333 |
2 | fact_events | 36.55 |
3 | fact_transactions | 36.55 |
flipsidecryptoSolana Latency - Live
Updated 6 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
›
⌄
-- forked from Ethereum Latency - Live @ https://flipsidecrypto.xyz/edit/queries/d14442cc-1b9b-47d1-b85d-21943b3943e9
-- forked from ethereum Latency - Live @ https://flipsidecrypto.xyz/edit/queries/665e44a5-aed3-4207-a1a5-d1d16429107c
-- forked from ethereum Latency - Live @ https://flipsidecrypto.xyz/edit/queries/9f739c4b-00cf-4550-9461-c7926d8885f6
-- forked from ethereum Latency - Live @ https://flipsidecrypto.xyz/edit/queries/b8f63300-e92f-456e-8110-7cd834736467
with
solana as (
select
datediff('second', max(block_timestamp), current_timestamp) / 60 as mins_behind,
'solana' as chain,
'fact_blocks' as table_name
from
solana.core.fact_blocks
union
select
datediff('second', max(block_timestamp), current_timestamp) / 60 as mins_behind,
'solana' as chain,
'fact_transactions' as table_name
from
solana.core.fact_transactions
union
select
datediff('second', max(block_timestamp), current_timestamp) / 60 as mins_behind,
'solana' as chain,
'fact_events' as table_name
from
solana.core.fact_events
)
select
table_name,
mins_behind
from solana
order by table_name
Last run: 6 days agoAuto-refreshes every 3 hours
3
77B
2s