select
--- date_trunc('day',block_timestamp) as day,
--- sum(AMOUNT_USD) as Withdrawn_ETH,
count(distinct(ORIGIN_FROM_ADDRESS)) as Withdrawn_Wallets
FROM ethereum.core.ez_eth_transfers
where ORIGIN_TO_ADDRESS = lower('0x25ace71c97b33cc4729cf772ae268934f7ab5fa1')
and block_timestamp >= current_date - 60
---group by 1