boomer77Average #Validators
    Updated 2021-08-22
    with counts as (SELECT
    delegator_address, count(DISTINCT validator_address) as Validator_Count
    from terra.staking
    where tx_status = 'SUCCEEDED' and action = 'delegate'
    group by 1
    order by 2 desc)

    select
    avg(validator_count) as Average
    from counts

    Run a query to Download Data