select token_symbol as "Token", count(distinct tx_hash) as "Deposit Count",
count(distinct depositor) as "Depositor Count", round(sum(amount_usd)) as "Volume (USD)", avg(amount_usd) as "Average", Median(amount_usd) as "Median",
max(amount_usd) as "Maximum"
from arbitrum.defi.ez_lending_deposits
where platform='Silo' and event_name='Deposit'
group by 1