Afonso_Diazaave-borrow-uni-4
    Updated 2023-03-09
    select
    borrower_address as borrower,
    count(distinct tx_hash) as transactions,
    sum(borrowed_usd) as volume_usd
    from ethereum.aave.ez_borrows
    where aave_version = 'Aave V2'
    and symbol in ('UNI')
    group by 1
    order by 3 desc
    limit 10
    Run a query to Download Data