Ali3NTop 10 Compound Borrowers By Volume
    Updated 2022-12-16
    select borrower,
    count (distinct tx_hash) as TX_Count,
    sum (loan_amount_usd) as Volume
    from ethereum.Compound.ez_borrows
    where block_timestamp >= CURRENT_DATE - 60 and loan_amount_usd > 0
    group by 1
    order by 3 DESC
    limit 10
    Run a query to Download Data