boomer77Top 25 Delegators by Volume
    Updated 2021-11-10
    select
    delegator_address, sum(event_amount)
    from terra.staking
    where action = 'delegate' and currency = 'LUNA' and tx_status = 'SUCCEEDED'
    group by 1
    order by 2 DESC
    limit 25



    Run a query to Download Data