CSS
Langage de styles web.
Concepts: 1. LTV (Loan-to-Value). 2. Liquidation Penalty. 3. Price [Oracle](/fr/terms/price-oracle) dependency. 4. Re-hypothecation (using collateral to earn extra yield). Protocols: MakerDAO, Aave, Compound, Morpho. Risks: Oracle failure, Flash loan attacks on price, Cascading liquidations.
graph LR
Center["CSS"]:::main
Rel_htmlx["htmlx"]:::related -.-> Center
click Rel_htmlx "/terms/htmlx"
Rel_apache_http_server["apache-http-server"]:::related -.-> Center
click Rel_apache_http_server "/terms/apache-http-server"
Rel_http["http"]:::related -.-> Center
click Rel_http "/terms/http"
classDef main fill:#7c3aed,stroke:#8b5cf6,stroke-width:2px,color:white,font-weight:bold,rx:5,ry:5;
classDef pre fill:#0f172a,stroke:#3b82f6,color:#94a3b8,rx:5,ry:5;
classDef child fill:#0f172a,stroke:#10b981,color:#94a3b8,rx:5,ry:5;
classDef related fill:#0f172a,stroke:#8b5cf6,stroke-dasharray: 5 5,color:#94a3b8,rx:5,ry:5;
linkStyle default stroke:#4b5563,stroke-width:2px;
🧒 Explique-moi comme si j'avais 5 ans
Collateralization is like going to a pawn shop. You give them your expensive watch (the [collateral](/fr/terms/collateral)) and they give you a cash loan. If you don't pay the money back, or if the price of watches crashes and your watch isn't worth enough to cover the debt anymore, the shopkeeper keeps the watch. In [DeFi](/fr/terms/defi), the 'shopkeeper' is a robot program that does this automatically.
🤓 Expert Deep Dive
Technically, the health of a collateralized position is defined by the 'Collateral Ratio' or 'Health Factor'. If the value of the collateral drops below the 'Liquidation Threshold', a third party (a Liquidator) can pay off the borrower's debt and take the collateral at a discount. This prevents 'Bad Debt' from accumulating in the protocol. Advanced systems like Aave use different 'Collateral Factors' (Loan-to-Value) for different assets; stablecoins have high factors (e.g., 85%), while volatile assets have lower ones (e.g., 60%). 'Cross-collateralization' allows a user to pool multiple assets to back a single loan, while 'Isolated' mode keeps the risk of one asset separate from the rest of the portfolio.