TABLE_NAME | MINS_BEHIND | |
---|---|---|
1 | fact_blocks | 36.1 |
2 | fact_inputs | 36.1 |
3 | fact_outputs | 36.1 |
4 | fact_transactions | 36.1 |
flipsidecryptoBitcoin Latency - Live
Updated 2025-03-09
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 Aurora Latency - Live @ https://flipsidecrypto.xyz/edit/queries/742b1682-956e-4405-bfcf-8050756a10a5
-- forked from Near Latency - Live @ https://flipsidecrypto.xyz/edit/queries/9bcac25e-71e9-4b77-b83c-04706e689db2
-- forked from Flow Latency - Live @ https://flipsidecrypto.xyz/edit/queries/8b6a8991-90ed-46a1-8c22-61cd0671d1b8
-- 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
bitcoin as (
select
datediff('second', max(block_timestamp), current_timestamp) / 60 as mins_behind,
'bitcoin' as chain,
'fact_blocks' as table_name
from
bitcoin.core.fact_blocks
union
select
datediff('second', max(block_timestamp), current_timestamp) / 60 as mins_behind,
'bitcoin' as chain,
'fact_transactions' as table_name
from
bitcoin.core.fact_transactions
union
select
datediff('second', max(block_timestamp), current_timestamp) / 60 as mins_behind,
'bitcoin' as chain,
'fact_inputs' as table_name
from
bitcoin.core.fact_inputs
Last run: about 2 months ago
4
92B
1s