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