keshanAnchor borrowers
    Updated 2022-02-22
    select block_timestamp::date as date, count(distinct sender) as borrowers, sum(amount) as amount, count(DISTINCT tx_id) as transactions
    from anchor.borrows
    where block_timestamp::date >= CURRENT_DATE::date - 92
    group by date
    Run a query to Download Data