select
eth_to_address,
sum(amount) as eth_received
from ethereum.core.ez_eth_transfers
where block_timestamp >= '2022-09-01'
and block_number >= '15537940'
and eth_from_address in (
'0xb64a30399f7f6b0c154c2e7af0a3ec7b0a5b131a' -- old address
, '0xdafea492d9c6733ae3d56b7ed1adb60692c98bc5' -- new address
)
group by eth_to_address
order by eth_received desc
limit 10