scottincryptoAlt chain backfill status
Updated 2022-12-08
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
›
⌄
select
'eth' as chain
, min(block_timestamp) as first_block
, max(block_timestamp) as last_block
from ethereum.core.fact_blocks
union all
select
'arb' as chain
, min(block_timestamp) as first_block
, max(block_timestamp) as last_block
from arbitrum.core.fact_blocks
union all
select
'avax' as chain
, min(block_timestamp) as first_block
, max(block_timestamp) as last_block
from avalanche.core.fact_blocks
union all
select
'bsc' as chain
, min(block_timestamp) as first_block
, max(block_timestamp) as last_block
from bsc.core.fact_blocks
union all
select
'opt' as chain
, min(block_timestamp) as first_block
, max(block_timestamp) as last_block
from optimism.core.fact_blocks
union all
select
'polygon' as chain
, min(block_timestamp) as first_block
, max(block_timestamp) as last_block
from polygon.core.fact_blocks
union all
Run a query to Download Data