boomer77delegate twice to
    Updated 2021-08-23
    SELECT
    delegator_address, validator_address, count(tx_id) as countval
    from terra.staking
    where tx_status = 'SUCCEEDED' and action = 'delegate'
    group by 1,2
    having countval > 1
    order by 1 desc
    Run a query to Download Data