-- forked from 60908f06-ffda-4468-95a5-f9bfa9db2166
select borrower_address,
count (distinct tx_hash) as TX_Count,
sum (borrowed_usd) as Volume
from ethereum.aave.ez_borrows
where block_timestamp >= CURRENT_DATE - 90
group by 1
order by 2 DESC
limit 10