brian-terraTop 5 Validators Info - staked
    Updated 2021-07-28
    WITH topFive AS
    (select *
    from terra.validator_labels
    where operator_address
    IN ('terravaloper123gn6j23lmexu0qx5qhmgxgunmjcqsx8gmsyse',
    'terravaloper15zcjduavxc5mkp8qcqs9eyhwlqwdlrzy6jln3m',
    'terravaloper1259cmu5zyklsdkmgstxhwqpe0utfe5hhyty0at',
    'terravaloper1h6rf7y2ar5vz64q8rchz5443s3tqnswrpf4846',
    'terravaloper1v5hrqlv8dqgzvy0pwzqzg0gxy899rm4kdur03x'))

    select db.*
    from terra.daily_balances db,topfive
    where address = delegator_address
    and date > getdate() - interval '60 days'
    and balance_type = 'staked'
    order by date desc,address_label,balance_type
    Run a query to Download Data