Crazy_KidAnchor Borrows in Last 3 Months
    Updated 2022-02-21
    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
    Run a query to Download Data