select 'ETH' as asset, sum(amount_usd) as usd
from ethereum.core.ez_eth_transfers
where origin_to_address ilike lower('%0X25ACE71C97B33CC4729CF772AE268934F7AB5FA1%')
union
select 'USDT' as asset, sum(amount_usd) as usd
from ethereum.core.ez_token_transfers
where symbol in ('USDT')
and origin_to_address ilike lower('%0X25ACE71C97B33CC4729CF772AE268934F7AB5FA1%')