Sbhn_NPTotal Borrow USD Volume on Aave V2 by Assets
    Updated 2023-03-09
    select
    symbol,
    count(DISTINCT tx_hash) as borrows,
    count(DISTINCT borrower_address) as unique_borrowers,
    sum(borrowed_usd) as volume_usd,
    row_number() over (order by volume_usd desc) as roww
    from ethereum.aave.ez_borrows
    where aave_version = 'Aave V2'
    group by 1
    Run a query to Download Data