vegardOsmosis Validators Per Month
Updated 2022-11-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
34
35
36
›
⌄
with
list1 as (
select
month,
validator_address,
sum(token_flow) as token_flow_total
from (
select
date_trunc('month', block_timestamp) as month,
redelegate_source_validator_address as validator_address,
sum(-1 * (amount / pow(10, 6))) as token_flow,
count(distinct(tx_id)) as tx_number
from osmosis.core.fact_staking
where 1 = 1
and redelegate_source_validator_address is not null
and currency = 'uosmo'
and tx_status = 'SUCCEEDED'
group by month, redelegate_source_validator_address
union
select
date_trunc('month', block_timestamp) as month,
validator_address,
sum(iff(action = 'undelegate', -1, 1) * (amount / pow(10, 6))) as token_flow,
count(distinct(tx_id)) as tx_number
from osmosis.core.fact_staking
where 1 = 1
and redelegate_source_validator_address is null
and currency = 'uosmo'
and tx_status = 'SUCCEEDED'
group by month, validator_address
)
group by month, validator_address
),
list2 as (
Run a query to Download Data