select token_symbol as "Token",
count(distinct tx_hash) as "Repayment Count",
count(distinct BORROWER) as "Repayer 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_repayments
where platform='Silo' and event_name='Repay'
group by 1