0-MIDborr count growth
    Updated 2023-04-13
    select date_trunc('month',BLOCK_TIMESTAMP)as month,count(distinct TX_HASH)as borrow_count
    , sum(borrow_count)over(order by month )as borrow_count_growth
    from ethereum.compound.ez_borrows
    where month>='2019-05-01'
    group by 1
    order by 1
    Run a query to Download Data