0-MIDcumulative unique borrowers
    Updated 2023-04-13
    with tab1 as(
    select BLOCK_TIMESTAMP::date as date,count(distinct BORROWER)as borrower_count
    from ethereum.compound.ez_borrows
    group by 1)
    select sum(borrower_count)as cum_unique_borrowers
    from tab1
    Run a query to Download Data