select
block_timestamp::date as date,
sum (amount) as Volume,
sum(amount_usd) as USD_Volume,
count(distinct tx_id) as Transactions_Count,
count(distinct origin_address) as Unique_Wallets
from flipside_prod_db.ethereum.udm_events
where origin_function_signature ='0x656f3d64'
and from_address ='0x0000000000000000000000000000000000000000'
and block_timestamp >='2022-05-01'
group by 1
order by 1