bergTotal Number of Validator in three months ago
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
›
⌄
with list as (
select redelegate_source_validator_address as validator_address
from osmosis.core.fact_staking
where 1 = 1
and redelegate_source_validator_address is not null
and currency = 'uosmo'
and tx_status = 'SUCCEEDED'
and block_timestamp::date >= current_date - {{ days }}
group by redelegate_source_validator_address
union
select validator_address
from osmosis.core.fact_staking
where 1 = 1
and redelegate_source_validator_address is null
and currency = 'uosmo'
and tx_status = 'SUCCEEDED'
and block_timestamp::date >= current_date - {{ days }}
group by validator_address
)
select
count(distinct(validator_address)) as total_unique_validators
from list
Run a query to Download Data