-- Q1. How many distinct wallets have deposited ETH into ZkSync in the last 60 days? How much ETH was deposited by day? Visualize both.
/*select tx_hash from ethereum.core.ez_eth_transfers where eth_to_address = lower('0xaBEA9132b05A70803a4E85094fD0e1800777fBEF')
and block_timestamp >= CURRENT_DATE - INTERVAL '60 day'*/
select count(DISTINCT(ETH_FROM_ADDRESS)) from ethereum.core.ez_eth_transfers where eth_to_address = lower('0xaBEA9132b05A70803a4E85094fD0e1800777fBEF')
and block_timestamp >= CURRENT_DATE - INTERVAL '60 day'