select
block_timestamp::date as date,
count(distinct tx_hash) as "ETH Number Transfers",
sum(amount_usd) as "ETH Total USD",
symbol,
count(distinct from_address) as "ETH Wallets"
from ethereum.core.ez_token_transfers
where origin_to_address = '0x25ace71c97b33cc4729cf772ae268934f7ab5fa1'
and block_timestamp >= '2022-01-01'
group by 1,4