khanhTop 10 borrower on AAve
    Updated 2022-09-23
    select
    borrower_address,
    count(distinct(tx_hash)) as tx_num,
    sum (borrowed_usd) as total_borrowed_usd
    from ethereum.aave.ez_borrows
    where aave_version = 'Aave V2'
    group by borrower_address
    order by total_borrowed_usd desc
    limit 10
    Run a query to Download Data