zakkisyedNo. of Vaildators in the Terra network in the last 60 days
    Updated 2021-12-13
    select
    count(address)
    from (
    select
    address,
    min(block_timestamp) as earliest_date -- takes the earliest entry of the validator in this table
    from terra.validator_voting_power
    group by address )
    where earliest_date >= CURRENT_DATE - 60 -- selects entries where the record starts in the past 60 days
    --group by address
    --order by 2 desc

    Run a query to Download Data