-- forked from Silo Borrowing: unique borrowers, volume in USD, AVG @ https://flipsidecrypto.xyz/edit/queries/81319016-154d-4ab7-80ce-d0b1e804d32d
SELECT
count(DISTINCt DEPOSITOR) as "unique depositor"
,sum(AMOUNT_USD) as "total deposited amount, USD"
,AVG(AMOUNT_USD) as "AVG deposited amount, USD"
FROM arbitrum.defi.ez_lending_deposits
WHERE platform = 'Silo'