select
to_address as stakers,
sum(raw_amount)/pow(10,18) as staked
from ethereum_core.fact_token_transfers
where contract_address = '0xae7ab96520de3a18e5e111b5eaab095312d7fe84'
and from_address = '0x0000000000000000000000000000000000000000'
group by 1
order by 2 desc
limit 10