ambalikaAave DAU
Updated 2023-02-06
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
›
⌄
with all_data as (select BLOCK_TIMESTAMP, BORROWER_ADDRESS
from ethereum.aave.ez_borrows
where BLOCK_TIMESTAMP>=date'2023-01-01'
union
select BLOCK_TIMESTAMP, DEPOSITOR_ADDRESS
from ethereum.aave.ez_deposits
where BLOCK_TIMESTAMP>=date'2023-01-01'
union
select BLOCK_TIMESTAMP, INITIATOR_ADDRESS
from ethereum.aave.ez_flashloans
where BLOCK_TIMESTAMP>=date'2023-01-01'
union
select BLOCK_TIMESTAMP, BORROWER
from ethereum.aave.ez_liquidations
where BLOCK_TIMESTAMP>=date'2023-01-01'
union
select BLOCK_TIMESTAMP, PROPOSER
from ethereum.aave.ez_proposals
where BLOCK_TIMESTAMP>=date'2023-01-01'
union
select BLOCK_TIMESTAMP, BORROWER
from ethereum.aave.ez_repayments
where BLOCK_TIMESTAMP>=date'2023-01-01'
union
select BLOCK_TIMESTAMP, DEPOSITOR_ADDRESS
from ethereum.aave.ez_withdraws
where BLOCK_TIMESTAMP>=date'2023-01-01')
select
date (BLOCK_TIMESTAMP) day, COUNT(distinct BORROWER_ADDRESS ) user
from all_data
group by 1
Run a query to Download Data