binhachonThe Road So Far, Mvmt. I: Validators - Number of validators
    Updated 2022-03-15
    select
    date_trunc('week', block_timestamp) as time,
    count(distinct address) as number_of_validators
    from terra.validator_voting_power
    where time > getdate() - interval'1 year'
    group by time
    Run a query to Download Data