select
address_name,
count(eth_from_address) as senders_count,
sum(amount) as eth_amount
from ethereum.core.ez_eth_transfers t inner join ethereum.core.dim_labels l on l.address = t.eth_to_address
where label_type = 'cex'
and block_timestamp >= CURRENT_DATE - 15
group by 1
order by eth_amount desc
limit 5