saeide-ahmadi-7Query1: volume of UST borrowed
    Updated 2022-05-07
    select
    date_trunc('day', block_timestamp) as day,
    sum(amount) as ust_borrowed
    from anchor.borrows
    where block_timestamp BETWEEN '2022-02-01' AND '2022-02-28'
    group by day
    Run a query to Download Data