with tab1 as (
select
tx_hash
from ethereum.core.fact_event_logs
where contract_address like lower('0xae0Ee0A63A2cE6BaeEFFE56e7714FB4EFE48D419')
and event_name in ('LogWithdrawal')
)
select
*
from ethereum.core.ez_eth_transfers
where tx_hash in (select tx_hash from tab1)
limit 100