select date_trunc('{{Time_Frame}}',block_timestamp) as "Date", token_symbol as "Token",
count(distinct tx_hash) as "Repayment Count",
count(distinct BORROWER) as "Repayer Count", sum(amount_usd) as "Volume (USD)"
from arbitrum.defi.ez_lending_repayments
where platform='Silo' and event_name='Repay'
group by 1, 2
order by 1