--credit 0xF82BA5A4651dB2a6590eE69A10866e65cccE72F5
select 'Deposit' as status,
count(DISTINCT tx_hash) as count_tx,
count(DISTINCT origin_from_address) as total_user,
sum(event_inputs:amount/pow(10,18)) as total_amount
from ethereum.core.fact_event_logs
where event_name = 'Deposit' and
origin_to_address = '0xae1fc3947ee83aeb3b7fec237bcc1d194c88bc24'
group by 1