Sbhn_NPUntitled Query
Updated 2023-02-28
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
›
⌄
select 'Aave' as platform,
count(DISTINCT borrower_address) as borrowers,
count(DISTINCT tx_hash) as borrows,
sum(borrowed_usd) as usd_volume
from ethereum.aave.ez_borrows
where block_timestamp::date >= CURRENT_DATE -30
group by 1
UNION ALL
select 'Compound' as platform,
count(DISTINCT borrower) as borrowers,
count(DISTINCT tx_hash) as borrows,
sum(loan_amount_usd) as usd_volume
from ethereum.compound.ez_borrows
where block_timestamp::date >= CURRENT_DATE -30
group by 1
Run a query to Download Data