headitmanagerTotal Wallets Over Time
Updated 2022-06-17
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
›
⌄
with total_wallet as (select count(distinct eth_from_address) from ethereum.core.ez_eth_transfers
where eth_to_address='0x99c9fc46f92e8a1c0dec1b1747d010903e884be1'
and block_timestamp::date>current_date - interval '60 days')
, total_wallet_overtime as (select count(distinct eth_from_address),block_timestamp::date from ethereum.core.ez_eth_transfers
where eth_to_address='0x99c9fc46f92e8a1c0dec1b1747d010903e884be1'
and block_timestamp::date>current_date - interval '60 days'
group by block_timestamp::date)
,total_deposit as (select sum(amount) from ethereum.core.ez_eth_transfers
where eth_to_address='0x99c9fc46f92e8a1c0dec1b1747d010903e884be1'
and block_timestamp::date>current_date - interval '60 days')
,total_deposit_overtime as (select sum(amount),block_timestamp::date from ethereum.core.ez_eth_transfers
where eth_to_address='0x99c9fc46f92e8a1c0dec1b1747d010903e884be1'
and block_timestamp::date>current_date - interval '60 days'
group by block_timestamp::date)
select * from total_wallet_overtime
Run a query to Download Data