select 'transfer to airswap' , count(distinct tx_hash) as Transfer_count , sum(amount_usd) as Transfer_amount , count(distinct from_address) as users
from ethereum.core.ez_token_transfers
where to_address='0x579120871266ccd8de6c85ef59e2ff6743e7cd15'
UNION
select 'travsfer from airswap' , count(distinct tx_hash) as Transfer_count, sum(amount_usd) as Transfer_amount , count(distinct to_address) as users
from ethereum.core.ez_token_transfers
where from_address='0x579120871266ccd8de6c85ef59e2ff6743e7cd15'