Bible Network Crypto DeFi Onchain RWA AI Agent Stablecoin CryptoTax DeFAI Chain SAFU AGI Claude Me Claude Skill Claude Cowork
Independent Media
Not affiliated with any project
DeFi Protocol Mechanics, Decoded
defi-bible.com
LATEST
SEC Commissioner Warns: Moving a Crypto Vault Onchain Doesn't Escape Securities Law — What This Means for the Yield Protocol You're Using  ·  The World's Largest Asset Manager Put an $18 Billion Fund on Uniswap — What Does That Actually Mean?  ·  Same Address, Same Block, In and Right Back Out: How to Catch a JIT Liquidity Attack Yourself With a Block Explorer  ·  A Basis Trade's Profit Isn't Guessed, It's Calculated: The Complete Practical Flow From Picking a Contract to Closing Out  ·  Building It Is Just the Start — the Real Work of Delta Neutral Comes After: How to Monitor a Position That Drifts on Its Own  ·  You Think You're Dealing With a Smart Contract — You're Actually Trusting a Team You've Probably Never Heard Of: How to Evaluate a Vault Curator
developers

The Moment Your Position Slightly Dips Below Threshold, Does the Protocol Auction It Immediately or Give You a Buffer First? How to Find Out

30-Second Version · For the impatient
Whether the marketing copy says 'soft liquidation' doesn't matter — what matters is what actually plays out on-chain the moment your position slightly dips below threshold: a series of small adjustments, or one full auction. That's the real answer.

Full Explanation +
01 · Why did this happen?

If a protocol's documentation makes no mention whatsoever of soft-liquidation-related terms, can I directly conclude it uses traditional liquidation?

A reasonable inference, but worth one more step of confirmation. Most protocols adopting a soft liquidation mechanism, since it's a relatively advanced, marketing-worthy design feature, usually explicitly describe it in documentation, not likely to deliberately hide this mechanism's existence; if documentation makes no mention at all, it's reasonable to infer this protocol most likely uses traditional liquidation.

But a worthwhile extra step of confirmation is directly querying the protocol's smart contract code (if the protocol has publicly verified source code), confirming whether the contract genuinely has only a single liquidation function, with no code corresponding to gradual adjustment logic at all. This step mainly rules out the relatively rare but genuinely possible gap of 'the protocol documentation isn't sufficiently complete, but actually a similar mechanism has been implemented, just not specifically emphasized.' In most cases, documentation and contract code align, but if you're committing a larger amount of capital, spending a few extra minutes on this cross-verification is a worthwhile extra safeguard.

02 · What is the mechanism?

When verifying the smart contract, if I can't read code, is there an easier alternative way to get started?

A few alternative ways that don't require coding capability: verify whether the protocol has undergone a security audit by a well-known third-party firm with a publicly released audit report — this kind of report usually describes the protocol's liquidation mechanism design (including whether soft liquidation is adopted) in relatively plain language, letting you obtain a professional firm's verification result without needing to read through smart contract code line by line yourself; check the protocol's official community (such as Discord or a governance forum), searching whether community members or the development team have publicly discussed the liquidation mechanism design in the past — this kind of discussion thread usually explains how the mechanism operates in relatively accessible language, far easier to understand than reading code directly.

Another relatively accessible approach is directly using a blockchain explorer, searching for this protocol's actual past liquidation-related transaction records (no need to read contract code, just observe the transaction pattern — is it one-time large amounts, or a series of small amounts) — the on-chain detective technique for verifying a JIT liquidity attack covered in an earlier article applies the same logic here too, equally applicable when verifying a liquidation pattern.

03 · How does it affect me?

If a protocol offers both soft liquidation and traditional liquidation options simultaneously, letting the borrower choose, is this design reasonable?

This kind of hybrid design genuinely exists, and to some extent is a reasonable compromise — different borrowers' willingness and ability to 'actively manage their position' inherently differs. Some users want more buffer space and a chance to actively remediate, willing to accept a relatively higher processing fee in exchange; other users lean toward simple and direct, preferring the traditional liquidation model's lower fee structure in exchange for a clearer, easier-to-understand trigger rule, not needing to continuously watch the soft liquidation stage's progress. Letting a borrower choose the liquidation mode suited to their own risk preference and management effort, to some extent, better satisfies different users' actual needs than forcing everyone to use the same single mechanism.

If the protocol you use offers this option, it's worth thinking through which type of user you are before establishing a position — if you plan to adopt a relatively passive strategy without frequently actively intervening in management, the traditional liquidation model's clear threshold might actually suit you better, since the buffer period soft liquidation gives you, if you don't genuinely use it to actively remediate, to some extent only delays when the problem occurs, not genuinely lowering the ultimate risk. Understanding this layer helps you, when given a choice, make a decision that genuinely fits your own actual operating habits, rather than mindlessly choosing soft liquidation purely because it 'sounds safer.'

04 · What should I do?

Is a newly launched protocol's soft liquidation mechanism, not yet having weathered a genuine stress test, worth trusting?

This needs to be viewed more cautiously, for a reason similar to logic covered in an earlier article — a mechanism looking reasonable in theoretical design doesn't mean it'll actually operate as smoothly as expected under genuine extreme market conditions. One of soft liquidation's core assumptions is that market liquidity is sufficient to support continuous, batched small-scale cash-outs — if this assumption itself doesn't hold up under a genuinely stressed scenario (say, an extreme liquidity crunch condition similar to Black Thursday), the soft liquidation mechanism might not operate normally as designed, and could even, due to the mechanism's own complexity, produce new problems unanticipated at the theoretical design stage.

For a newly launched soft liquidation mechanism without a genuine stress-test track record yet, a more cautious approach first views this mechanism's protective effect with a relatively conservative mindset, not directly assuming your position is genuinely safer than a protocol using traditional liquidation just because the protocol's marketing copy emphasizes 'safer gradual liquidation.' You can continuously watch whether this mechanism has been through actual testing during subsequent market stress events after launch — if, after a period, it genuinely operates well under real stress, that's more concrete evidence worth trusting, rather than simply believing in a theoretical design not yet verified.

Full Content +

An earlier article covered soft liquidation's mechanical principle — once a position falls below the safety threshold, rather than immediately auctioning in full, a gradual adjustment mechanism activates, giving the borrower room to actively remediate. But not every protocol adopts this mechanism, and verifying it isn't difficult. This article teaches you how to specifically judge whether a protocol uses traditional liquidation or soft liquidation, plus details worth noting during the verification process.

Step One: Check Official Documentation, Look for Evidence Two Thresholds Exist

The most direct verification starting point is the protocol's official documentation or technical whitepaper. Traditional liquidation usually defines only one liquidation threshold (say, 'collateralization ratio falling below 150% triggers liquidation'); soft liquidation usually explicitly defines two different thresholds — a relatively looser soft liquidation trigger point, and a stricter full liquidation point. If the documentation contains terms like 'gradual,' 'partial liquidation,' or 'recovery mode,' or explicitly describes two different liquidation stages, this is usually direct evidence a soft liquidation mechanism exists.

Step Two: Check the Smart Contract, Confirm the Mechanism Is Genuinely Implemented

Documentation's description doesn't necessarily fully reflect the actual on-chain code logic — a safer approach is directly querying the protocol's liquidation-related smart contract, searching for function names corresponding to soft liquidation logic (such as function names containing terms like `partialLiquidation`, `gradualAdjust`, or `recoveryMode`), and confirming whether these functions are genuinely enabled on-chain, not just reserved code that's never actually triggered.

Step Three: Check Historical Transaction Records, Confirm the Mechanism Genuinely Operated

A mechanism theoretically written into the contract doesn't mean it genuinely operates as designed in practice. Check whether this protocol has ever had a position hit the soft liquidation threshold in the past, and if so, specifically review the on-chain record — do you genuinely see a series of small, batched collateral adjustment transactions, rather than a one-time full auction; does the time interval between these transactions match the gradual adjustment cadence the protocol documentation describes. If you can find this kind of actual case, it means the soft liquidation mechanism isn't just theoretical design, but genuinely operated under real market conditions.

Step Four: Compare Processing Fee Ratios, Confirm It's Genuinely More Gentle Than Traditional Liquidation

One of soft liquidation's core value propositions is that the processing fee should be noticeably lower than traditional liquidation's liquidation bonus discount. A concrete way to verify this is finding the fee ratio the protocol documentation sets separately for the soft liquidation stage versus the full liquidation stage, comparing the two directly. If the so-called soft liquidation stage's fee ratio is actually similar to traditional liquidation's, then even if the mechanism is formally gradual, it hasn't genuinely lowered the cost a borrower bears during this stage — worth putting a question mark on this protocol's soft liquidation design.

How to Distinguish 'Genuine Soft Liquidation' From 'Traditional Liquidation With a New Name'

Some protocols in the market genuinely use terms like 'soft liquidation' in their marketing copy, while the actual mechanism design doesn't genuinely achieve gradual adjustment's core spirit. Especially worth watching for during verification: once soft liquidation triggers, does it genuinely give the borrower a meaningful reaction window (say, hours to days), or does the so-called 'soft liquidation' actually still complete the vast majority of position adjustment within an extremely short time (say, the same block), just with a more gentle-sounding name; and does the soft liquidation stage's collateral adjustment genuinely proceed proportionally, in small steps, or is it named soft liquidation while the first trigger already adjusts away most of the position, not substantively different from traditional liquidation.

What This Means for Your Money

Next time you assess whether to put capital into a lending protocol, don't just feel reassured because the protocol's marketing copy mentions the term 'soft liquidation' — spending time walking through the four verification steps above helps you more accurately judge whether this protocol's liquidation mechanism genuinely provides extra buffer protection, or is just a traditional mechanism with a different name. Understanding what processing flow your position genuinely goes through the moment it dips below the safety threshold is a concrete detail that shouldn't be led by marketing terminology, but personally verified, when assessing any lending protocol's risk profile.

Diagram
查證軟清算的四個步驟查文件、查合約、查歷史紀錄、比對費用比例,四步驟共同判斷一個協議是不是真的採用軟清算機制。Four Steps to Verify Soft Liquidation1. DocumentationTwo thresholds defined?2. Smart ContractLogic really enabled?3. Historical RecordHas it ever fired?4. Fee ComparisonGenuinely gentler?"Has soft liquidation" ≠ "soft liquidation actually helps"Watch for renamed traditional liquidation with no real bufferDeFi Bible · defi-bible.com
Feel free to share. Please credit the source.
Ask a Question
Please enter at least 10 characters
Related Articles
Someone Bought $8 Million Worth of Ether for $1: Breaking Down Black Thursday's Liquidation Cascade Frame by Frame
risk · Jul 29
A Protocol Once Had Bad Debt — Permanent Blacklist, or Worth Reconsidering?
risk · Jul 26
Who Are Liquidators, and Why Do They Watch Other People's Positions 24/7 Waiting to Liquidate Them?
protocols · Jul 24
How Liquidation Mechanism Design Determines Whether a Market Crash Becomes a Systemic Crisis
risk · Jul 23
More Related Topics