Echo5577TOP BORROWERS BY LIQUIDATIONS
    Updated 2024-09-18
    SELECT borrower, COUNT(*) AS total_liquidations
    FROM ethereum.defi.ez_lending_liquidations
    GROUP BY borrower
    ORDER BY total_liquidations DESC
    LIMIT 10;