select origin_from_address, round(sum(amount_usd),2) as tot_amount_usd
from ethereum.core.ez_token_transfers
where origin_to_address = lower('0x3b4095D5ff0e629972CAAa50bd3004B09a1632C5')
and amount_usd > 0 and amount_usd is not null
group by origin_from_address order by tot_amount_usd desc
limit 10