select from_address as staker, count(tx_hash) as staking_count
from ethereum.core.ez_token_transfers
where ORIGIN_FUNCTION_SIGNATURE='0xadc9772e' --stake
and to_address='0x4da27a545c0c5b758a6ba100e3a049001de870f5' --AAVE: Staked AAVE
and symbol='AAVE'
group by 1
order by 2 desc
limit 10