SELECT sender as borrowers, COUNT(tx_id) as no_of_borrows, currency, sum(amount) as amount_borrowed
FROM anchor.borrows
WHERE date(block_timestamp) BETWEEN '2021-11-01' AND '2022-01-31'
GROUP BY borrowers, currency
ORDER BY amount_borrowed DESC
LIMIT 100