yasmin-n-d-r-hosmo first validator
Updated 2023-01-02
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
›
⌄
with actives as (
select
min(BLOCK_TIMESTAMP) as min_time,
tx_from as wallet
from
osmosis.core.fact_transactions
group by
2
)
select
date_trunc('week', min_time) as week,
count (tx_id) as tx,
LABEL
from
osmosis.core.fact_staking
JOIn osmosis.core.dim_labels on VALIDATOR_ADDRESS = ADDRESS
LEFT OUTER JOIN actives ON min_time = BLOCK_TIMESTAMP
where
DELEGATOR_ADDRESS in (
select
wallet
from
actives
)
and ACTION = 'delegate'
GROUP by
1,
3
order by
tx desc
limit
200
Run a query to Download Data