インパーマネントロス
Impermanent loss is a temporary decrease in the value of assets held by a liquidity provider in an automated market maker (AMM) pool when the price of the deposited assets changes relative to each other. 安定損失とは、自動化された市場メーカー(AMM)プールにおける流動性プロバイダが保有する資産の価値の一時的な減少である。
インパーマネントロスは、流動性プールに預けられたトークンの価格が、預け入れられたときから変化した場合に発生します。この損失は「インパーマネント」であり、流動性提供者は、理論的には、資産の価格が元の比率に戻れば、初期の価値を取り戻すことができます。損失は、流動性提供者が資産を引き出した場合にのみ実現します。
インパーマネントロスは、分散型金融(DeFi)の世界、特にUniswapやCurveのような自動マーケットメーカー(AMM)のコンテキストにおける中心的な概念です。これらのAMMは、ユーザーが仲介者なしでトークンを取引することを可能にします。流動性提供者はプールにトークンを提供し、その見返りとして取引手数料を獲得します。
インパーマネントロスの大きさは、プール内の資産の価格の乖離に依存します。価格変動が大きければ大きいほど、インパーマネントロスも大きくなります。インパーマネントロスは大きくなる可能性がありますが、流動性提供者は手数料も獲得し、損失を相殺したり、上回ったりすることもあります。インパーマネントロスを理解することは、DeFi流動性プールに参加するすべての人にとって不可欠です。
graph LR
Center["インパーマネントロス"]:::main
Rel_automated_market_maker["automated-market-maker"]:::related -.-> Center
click Rel_automated_market_maker "/terms/automated-market-maker"
Rel_automated_market_maker_amm["automated-market-maker-amm"]:::related -.-> Center
click Rel_automated_market_maker_amm "/terms/automated-market-maker-amm"
Rel_decentralized_exchange_dex_order_book_aggregation["decentralized-exchange-dex-order-book-aggregation"]:::related -.-> Center
click Rel_decentralized_exchange_dex_order_book_aggregation "/terms/decentralized-exchange-dex-order-book-aggregation"
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;
🧠 理解度チェック
🧒 5歳でもわかるように説明
Imagine you lend two different toys to a friend, expecting to get them back plus some extra treats. If one toy suddenly becomes much more popular (valuable) than the other, your friend might trade them around, leaving you with more of the less popular toy when you get them back, making your collection worth less than if you'd just kept them.
🤓 Expert Deep Dive
The mathematical formulation of Impermanent Loss for a constant product AMM (like Uniswap V2) is derived from the invariant x y = k. Let x0 and y0 be the initial quantities of asset X and Y deposited, and P0 = y0 / x0 be the initial price. At a later time, let the price be P = y / x. The quantity of assets held by the LP after rebalancing is x = sqrt(k / P) and y = sqrt(k P). The value of the LP's holdings is V_lp = x P + y. The value of simply holding the initial assets is V_hold = x0 P0 + y0. Impermanent Loss is IL = (V_hold - V_lp) / V_hold. This can be expressed as a function of the price ratio r = P / P0. For example, if r = 2 (price doubles), IL ≈ 5.7%. If r = 3, IL ≈ 11.1%. If r = 0.5 (price halves), IL ≈ 5.7%. The formula highlights that IL increases quadratically with the price deviation. Edge cases include pools with very low liquidity where arbitrage can cause rapid price swings, exacerbating IL. Strategies to mitigate IL include providing liquidity in stablecoin pairs or utilizing AMMs with different bonding curves (e.g., Curve Finance's stableswap invariant).