What it is
Collateral liquidation auctions are the mechanism many lending and stablecoin protocols use to sell off a borrower's collateral when their loan becomes undercollateralized — meaning the value of what they put up as security has fallen too close to (or below) the value of what they borrowed. Instead of the protocol seizing and selling collateral itself at a fixed price, it runs an open auction so market participants compete to buy it, ideally at a fair price.
How it works
- A borrower deposits collateral (like ETH) and takes out a loan or mints a stablecoin against it, subject to a minimum collateralization ratio.
- If the collateral's value falls (or the debt's value rises) enough that the position drops below the required ratio, anyone can call a public "liquidate" function to flag the position as eligible for liquidation.
- The protocol seizes the position's collateral and starts an auction, often structured as a Dutch auction (price starts high and falls over time until a buyer accepts) or an English-style ascending-bid auction.
- Bidders — usually automated bots called "keepers" or arbitrageurs — submit bids in the debt asset (like the protocol's stablecoin) to buy the collateral at the currently offered price.
- The winning bid's payment is used to cover the outstanding debt plus a penalty fee; if the sale raises more than what's owed, any surplus is typically returned to the original borrower, while a shortfall may be covered by a protocol reserve or socialized among other users.
- The collateral transfers to the winning bidder, and the position is closed out, removing the bad debt risk from the protocol's books.
Why designers use it
- Lets the market, rather than a fixed internal price, determine what collateral is actually worth at the moment of liquidation, reducing the chance of selling too cheap or too expensive.
- Provides a transparent, permissionless process anyone can participate in, avoiding reliance on a single trusted party to handle seized assets.
- Creates a built-in incentive (the liquidation penalty and the chance to buy at a discount) that reliably attracts bidders/keepers to keep the system solvent even during stress.
- Helps the protocol quickly convert risky, volatile collateral back into stable value before prices fall further, protecting overall solvency.
Failure modes
- Auction failure during network congestion: if the blockchain is congested or gas fees spike during a market crash, bids may not land in time, causing auctions to clear at unfairly low prices or not clear at all, leaving bad debt.
- Thin bidder participation: in a fast, broad market crash, many potential bidders are liquidating their own positions or dealing with volatility elsewhere, leaving few bidders and letting collateral sell far below fair value.
- Cascading liquidations: a large price drop triggers many liquidations simultaneously, and the resulting sell pressure from auctioned collateral pushes prices down further, triggering yet more liquidations in a feedback loop.
- Zero-bid or exploit bids: poorly designed auctions have historically been won with near-zero bids due to bugs or bidding-mechanism edge cases, effectively giving collateral away for free.
- Socialized losses: when auctions can't cover the full debt, the shortfall is often absorbed by a protocol-wide reserve or by diluting other stakeholders, spreading the cost of one borrower's risk across the whole system.
What to check before using it
- Verify the auction design has been tested under extreme volatility and congestion scenarios, not just calm markets.
- Check what backstops exist (protocol reserves, insurance funds, recapitalization mechanisms) if an auction fails to cover the debt.
- Understand the liquidation penalty size and who receives it — is it enough to attract bidders without being punitive to borrowers for minor breaches?
- Confirm whether the auction format (Dutch, English, or batch) has known historical exploits or edge cases in similar implementations.
- Assess how collateralization ratios and liquidation thresholds are set relative to the collateral's historical volatility, to reduce how often auctions are triggered by short-term price noise.