select
date_trunc('day', block_timestamp) as date,
dayname(block_timestamp) as day_name,
hour(block_timestamp) as hour,
sum(amount_usd) as stake_volume_usd,
sum(amount) as stake_volume,
count(distinct origin_from_address) as unique_depositors
from ethereum.core.ez_eth_transfers
where eth_to_address = '0x84db6ee82b7cf3b47e8f19270abde5718b936670'
group by 1, 2, 3