-- forked from 1e090c45-73c2-4ba0-8966-2f1518fa08c0
select depositor_address,
count (distinct tx_hash) as TX_Count,
sum (supplied_usd) as Volume
from ethereum.aave.ez_deposits
where block_timestamp >= CURRENT_DATE - 90 and supplied_usd > 0
group by 1
order by 3 DESC
limit 10