0-MIDTop 10 Stakers By $Volume
    Updated 2024-12-28

    select DELEGATOR_ADDRESS as staker
    ,sum(AMOUNT/1e6) as volume
    ,count(distinct TX_ID) as stakes
    from axelar.gov.fact_staking
    where BLOCK_TIMESTAMP::date>='2024-01-01'and BLOCK_TIMESTAMP::date<='2024-03-31'
    and ACTION='delegate'
    and TX_SUCCEEDED='true'
    group by 1
    order by 2 desc
    limit 10




    QueryRunArchived: QueryRun has been archived