0-MID Monthly Unique Borrowers By Token
    Updated 2023-04-13
    select date_trunc('month',BLOCK_TIMESTAMP)as month,BORROWS_CONTRACT_SYMBOL as token,count(distinct BORROWER)as borrower_count
    from ethereum.compound.ez_borrows
    group by 1,2
    order by 1
    Run a query to Download Data