Sbhn_NPTop 10 MKR & SNX & UNI Borrowers by Borrow Count
    Updated 2023-03-09
    select borrower_address,
    count(DISTINCT tx_hash) as borrows
    from ethereum.aave.ez_borrows
    where symbol in ('MKR','SNX','UNI')
    and aave_version = 'Aave V2'
    group by 1
    order by 2 DESC
    limit 10

    Run a query to Download Data