select
substr(from_address, 1, 5) as trimmed_from_address,
count(1) as transactions
from ethereum.core.ez_token_transfers
where to_address = '0x00000000219ab540356cbb839cbe05303d7705fa'
group by 1
qualify row_number() over (order by transactions desc) <= 10