Abbas_ra21Borrow by Symbol 2
    Updated 2023-03-08
    select
    date_trunc('month',BLOCK_TIMESTAMP)::DATE AS MONTH,
    SYMBOL,
    count(DISTINCT BORROWER_ADDRESS) AS "Unique Borrowers Count",
    count(*) AS "Borrow Events Count"
    from ethereum.aave.ez_borrows where SYMBOL in ('MKR','UNI','SNX') and AAVE_VERSION='Aave V2'
    group by 1,2
    Run a query to Download Data