MostlyData_Osmosis blocks timestamp
Updated 2023-02-08Copy Reference Fork
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
›
⌄
with osmosis_blocks_info as(
select
block_timestamp,
proposer_address
from osmosis.core.fact_blocks
where block_timestamp >= '2023-02-01 00:00:00'
and block_timestamp <= '2023-02-07 00:00:00'
),
validator_info as(
select
raw_metadata[0]['uptime']['address'] as address,
label
from osmosis.core.dim_labels
where label_subtype = 'validator'
)
select
block_timestamp as "Block time",
label as "Validator"
from osmosis_blocks_info
inner join validator_info on proposer_address = address
order by block_timestamp asc
Run a query to Download Data