select depositor as "Depositor", round(sum(amount_usd)) as "Volume (USD)", count(distinct tx_hash) as "TXs Count"
from arbitrum.defi.ez_lending_deposits
where platform='Silo' and event_name='Deposit' and amount_usd is not null
group by 1
order by 2 desc
limit 10