with t1 as(
select distinct FROM_ADDRESS as xxx from ethereum.core.fact_transactions
where
TO_ADDRESS=lower('0x881D40237659C251811CEC9c364ef91dC08D300C'))
select count(*) from flipside_prod_db.ethereum.erc20_balances a right join t1 b on a.USER_ADDRESS=b.xxx
where SYMBOL='ETH'
limit 10