select
from_address,
count(tx_hash) as number_of_tx,
sum(eth_value) as eth_amount
from ethereum.core.fact_transactions
where to_address = '0xae0ee0a63a2ce6baeeffe56e7714fb4efe48d419'
and origin_function_signature = '0xb6b55f25'
group by from_address
order by eth_amount desc
limit 5