headitmanagerTotal Deposit
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='0xabea9132b05a70803a4e85094fd0e1800777fbef'
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='0xabea9132b05a70803a4e85094fd0e1800777fbef'
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='0xabea9132b05a70803a4e85094fd0e1800777fbef'
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='0xabea9132b05a70803a4e85094fd0e1800777fbef'
and block_timestamp::date>current_date - interval '60 days'
group by block_timestamp::date)
select * from total_deposit
Run a query to Download Data