select token_symbol as "Token",
count(distinct tx_hash) as "Borrow Count",
count(distinct borrower) as "Borrower Count", 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_borrows
where platform='Silo' and event_name='Borrow'
group by 1