Skip to content
B

차트 분석, 전문가 관점을 받아보세요

무료로 시작하기

DeFi

Health Factor

Health Factor

DeFi lending safety metric: ratio of collateral value to debt value adjusted for liquidation thresholds. HF > 1 = healthy position. HF < 1 = liquidatable. Critical for managing leveraged DeFi positions.

Key Takeaways

Chapter 7: DeFi (Decentralized Finance)

Overview

Decentralized Finance, or DeFi, refers to the ecosystem of financial services built on blockchain networks and smart contracts — operating entirely without traditional financial intermediaries such as banks, brokerages, or insurance companies. Anyone with an internet connection and a crypto wallet can participate in a wide range of financial activities, including lending, trading, and yield generation, all governed automatically by code-defined rules. DeFi experienced explosive growth beginning with the so-called "DeFi Summer" of 2020, and today hundreds of billions of dollars in assets are locked within smart contracts across the ecosystem.

The core philosophy of DeFi rests on three pillars: Permissionlessness, Transparency, and Composability. No one can be arbitrarily excluded from participation; every transaction and every line of code is publicly visible on-chain; and different protocols can be combined like LEGO blocks to create entirely new financial products. These properties have enabled DeFi to replicate — within just a few years — the full spectrum of products that traditional finance took decades to develop: exchanges, lending markets, derivatives, and yield optimization tools, all implemented on-chain.

This chapter provides a systematic exploration of the core mechanisms and innovations that constitute the DeFi ecosystem. We begin with AMMs (Automated Market Makers) and Liquidity Pools — the foundational building blocks of decentralized exchanges — and then advance to more sophisticated mechanisms including Impermanent Loss, Concentrated Liquidity, and StableSwap. From there, we examine DeFi infrastructure and emerging paradigms such as Flash Loans, Oracles, and Intent-Based Trading. Finally, we survey cutting-edge yield-generation protocols like Ethena and Pendle, painting a comprehensive picture of where DeFi stands today and where it is headed.


AMM (Automated Market Maker)

Definition

An AMM (Automated Market Maker) is a decentralized exchange (DEX) mechanism that determines token prices automatically using a mathematical formula, rather than relying on a traditional order book. The most widely used formula is the Constant Product Formula: x × y = k, where x and y represent the quantities of two tokens in the pool, and their product k remains constant at all times. When a user deposits one token into the pool, they receive the other in return, and the price adjusts automatically with every trade. Uniswap successfully implemented this concept on-chain in 2018, igniting the DEX revolution that followed.

Key Points

  • Mathematical Price Discovery: The x × y = k formula means the ratio of the two tokens in the pool determines their relative price. As the quantity of one token increases, the price of the other rises accordingly — supply and demand are reflected automatically.
  • Single-Transaction Settlement: There is no need to match a buyer with a seller. A user submits a single swap transaction, and price determination and settlement occur simultaneously within that same transaction.
  • Replacing the Order Book: Implementing a traditional order book on-chain is highly inefficient, as every order placement, modification, and cancellation requires a separate transaction. AMMs elegantly solve this problem through a pool-based mechanism.
  • Slippage: The larger a trade is relative to the size of the pool, the more unfavorably the price moves against the trader — a phenomenon known as slippage. This is an inherent property of the constant product curve.
  • The Role of Arbitrageurs: When a price discrepancy arises between the AMM pool and external markets (e.g., centralized exchanges), arbitrageurs step in to close the gap, driving the AMM price back toward the market rate. This mechanism keeps AMM prices aligned with broader market conditions.

AMMs are inseparable from Liquidity Pools: the AMM is the algorithm, and the liquidity pool is the reservoir in which that algorithm operates. The AMM pricing formula has also evolved into specialized variants optimized for particular asset pairs — most notably StableSwap — while Concentrated Liquidity represents a major innovation designed to address the capital inefficiency inherent in the basic AMM model. Large trades executed against AMMs can be combined with Flash Loans to execute arbitrage strategies, and Oracles serve as critical infrastructure connecting AMM-derived prices to the broader on-chain ecosystem.


Liquidity Pool

Definition

A Liquidity Pool is a smart contract that holds the token reserves an AMM uses for price discovery and trade settlement. Pools are typically composed of two tokens deposited at equal value, and participants known as Liquidity Providers (LPs) voluntarily supply their assets in exchange for a share of the trading fees generated by the pool. Liquidity pools are the physical foundation of decentralized trading in DeFi: the deeper a pool (i.e., the greater the total value of deposited assets), the lower the slippage for large trades, creating a more favorable environment for traders.

Key Points

  • LP Token Issuance: When a user deposits liquidity, they receive LP tokens (e.g., UNI-V2 tokens) representing their proportional share of the pool. Returning these tokens redeems the underlying assets plus any accumulated fees.
  • Fee Revenue Structure: On Uniswap v2, every swap incurs a 0.3% fee, which is automatically distributed to LPs in proportion to their pool share. Fee rates vary by protocol — stablecoin pools can charge as little as 0.01–0.05%.
  • Pool Depth and Slippage: More liquidity in a pool means less price impact for a given trade size. This is why protocols aggressively pursue LP incentives such as liquidity mining programs — deeper pools attract more trading volume, which in turn generates more fee revenue.
  • Dual-Asset Price Exposure: LPs must deposit both assets in a pair rather than a single token, meaning they hold price exposure to both simultaneously. This dual exposure is the source of Impermanent Loss risk.
  • Liquidity Mining Incentives: Many protocols supplement fee revenue with governance token rewards to attract LPs. However, this approach introduces inflation pressure and the risk of "mercenary liquidity" — capital that flows away the moment incentives dry up.

Liquidity Pools operate in direct conjunction with AMMs. The primary financial risk facing LPs is Impermanent Loss, and the two principal strategies for minimizing it are Concentrated Liquidity and StableSwap. Pool token price data can also serve as a source for Oracles, though this carries manipulation risks that must be carefully managed. Additionally, Flash Loans function by temporarily borrowing assets directly from liquidity pools within a single atomic transaction.


Impermanent Loss

Definition

Impermanent Loss (IL) is the opportunity cost incurred by a Liquidity Provider when the price ratio of the two tokens in an AMM pool diverges from the ratio at the time of deposit. The constant product formula continuously rebalances the pool as prices change — effectively selling the appreciating asset and buying the depreciating one. As a result, the LP's portfolio value falls below what it would have been had they simply held the tokens without providing liquidity. The loss is called "impermanent" because it disappears if the price ratio returns to its original level at the time of deposit.

Key Points

  • IL Calculation Formula: When one asset's price changes by a factor of r, the impermanent loss is given by 2√r / (1 + r) − 1. For example, a 2× price increase in one asset results in approximately 5.7% IL; a 4× increase causes roughly 20% IL; and a 9× increase produces approximately 37.5% IL.
  • Correlation and IL: The more strongly the two tokens' prices move together, the smaller the IL. This is why stablecoin pairs like USDC/USDT or correlated asset pairs like stETH/ETH carry significantly lower IL risk for LPs.
  • Fee Offset: IL does not automatically translate into a net loss. If fee revenue exceeds the IL, the LP still outperforms a simple hold strategy. Pools with high fee rates and high trading volumes offer the greatest potential for IL offset.
  • Permanent Loss Risk: If prices do not return to their original ratio, the impermanent loss becomes a realized loss. In extreme cases — such as one asset collapsing to zero due to a rug pull or project failure — IL can approach 100%.
  • IL Hedging Strategies: Common approaches to managing IL include selecting a tight price range via Concentrated Liquidity, choosing strongly correlated asset pairs, hedging with options, or using dedicated IL insurance protocols.

Impermanent Loss is a foundational risk concept that every LP participating in a Liquidity Pool must understand. Concentrated Liquidity allows LPs to define a specific price range for their liquidity, giving them more precise control over the conditions under which IL occurs. StableSwap is specifically designed to minimize IL between correlated assets. Like the Health Factor in lending protocols, IL is one of the key financial risk metrics that any DeFi participant must actively monitor and manage.


Concentrated Liquidity (Uniswap v3)

Definition

Concentrated Liquidity is the landmark liquidity provisioning mechanism introduced by Uniswap v3 in 2021. Rather than distributing liquidity uniformly across the entire price range from zero to infinity, LPs can now concentrate their capital within a specific price interval — defined by discrete units called ticks — of their own choosing. This enables a dramatic improvement in capital efficiency: an LP earns fees only when the current price falls within their selected range, but within that range, the same capital generates far greater fee revenue than it would in a traditional AMM. For instance, an LP who believes ETH will trade between $3,000 and $4,000 can concentrate all capital within that band, achieving capital efficiency many times higher than a v2-style uniform distribution.

Key Points

  • Tick-Based Architecture: Price ranges are divided into discrete tick intervals. An LP specifies a lower tick and an upper tick to define their position, and fees accrue only while the market price remains within that range.
  • Extreme Capital Efficiency: For assets with near-constant prices — such as USDC/USDT — concentrating liquidity within a narrow band like 0.999–1.001 can yield thousands of times the capital efficiency of a standard pool. This benefit is similarly powerful for strongly correlated pairs like stETH/ETH.
  • Non-Fungible Positions: Unlike Uniswap v2, where all LP positions are represented by identical fungible tokens, each Concentrated Liquidity position is unique and is minted as an NFT encoding the specific price range and deposited amounts. This significantly increases the complexity of position management.
  • Range Orders: By depositing a single asset on one side of a price range, an LP can create a position that automatically converts into the other asset as the price passes through the range — functionally approximating an on-chain limit order.
  • Active Management Burden: When the market price moves outside the defined range, the position earns no fees. LPs must actively rebalance their ranges as market conditions shift, which has given rise to a class of automated liquidity management protocols (e.g., Arrakis Finance, Gamma Strategies) designed to handle this on behalf of LPs.

Concentrated Liquidity is a direct evolution of the AMM and Liquidity Pool model. The choice of price range has a direct bearing on Impermanent Loss: narrower ranges increase fee efficiency but also amplify IL risk when prices move outside the band. Like StableSwap, Concentrated Liquidity represents an approach to optimizing liquidity provision for specific asset characteristics — both emerged from the same fundamental challenge of maximizing capital efficiency. Off-chain solvers in Intent-Based Trading systems also rely heavily on Concentrated Liquidity pools as primary sources of on-chain liquidity.


StableSwap (Curve)

Definition

StableSwap is the specialized AMM pricing algorithm developed by Curve Finance, optimized for exchanging assets that are pegged to one another — primarily stablecoins (USDC, USDT, DAI, etc.) or closely correlated assets such as stETH/ETH. It uses a hybrid pricing curve that mathematically blends the Constant Sum formula (x + y = k) with the Constant Product formula (x × y = k), with a parameter called the Amplification Factor (A) controlling the weight given to each. Near the 1:1 peg, the curve behaves like a constant sum formula — nearly eliminating slippage — while deviations from the peg cause it to behave increasingly like a constant product curve, preventing pool depletion.

Key Points

  • Hybrid Pricing Curve: A pure constant sum curve offers minimal slippage but risks pool depletion when one asset runs out. A pure constant product curve prevents depletion but incurs high slippage. StableSwap combines the best of both: near-zero slippage around the peg, with a depletion safeguard as prices diverge.
  • Ultra-Low Fees: Compared to Uniswap's standard 0.3% swap fee, Curve's stablecoin pools operate at 0.01–0.04%, while still generating meaningful fee income for LPs due to high trading volumes. This makes Curve the preferred venue for large stablecoin swaps.
  • Amplification Factor (A): A higher A value flattens the curve further around the 1:1 ratio, reducing slippage under normal conditions. However, it also increases the severity of losses if the peg breaks significantly. The A parameter is adjustable through protocol governance.
  • Curve Wars: The competition among protocols to direct CRV governance token emissions — and the associated veCRV (vote-escrowed CRV) boost mechanics — toward their own liquidity pools became known as the "Curve Wars," a defining episode in DeFi governance that showcased the economic power embedded in liquidity incentive allocation.
  • Curve v2 (Cryptoswap): Curve v2 extended the StableSwap concept beyond pegged assets by introducing a dynamic internal peg mechanism, enabling efficient low-slippage trading for volatile asset pairs and broadening the protocol's applicability across the DeFi ecosystem.

StableSwap is a specialized implementation of the AMM paradigm, operating on top of Liquidity Pools. Its optimization for correlated assets results in minimal Impermanent Loss, and together with Concentrated Liquidity, it represents one of the two primary approaches to improving capital efficiency in DeFi liquidity provision. Synthetic dollar protocols like Ethena (USDe) rely on Curve pools as core liquidity infrastructure, and Pendle employs a StableSwap-inspired pricing curve for trading yield-bearing tokens.


Bonding Curve Launchpad

Definition

A Bonding Curve Launchpad is a pre-AMM token issuance platform designed for launching new tokens before they are listed on a conventional AMM pool. A bonding curve is a mathematical function that defines the relationship between a token's supply and its price: buying tokens increases the price along the curve, while selling decreases it. Pump.fun popularized this model on the Solana ecosystem, enabling anyone to launch a new token in a matter of seconds and have it immediately tradeable — reducing the friction of token creation to virtually zero.

Key Points

  • Automated Price Discovery: The bonding curve smart contract enables instant price discovery without requiring external liquidity providers. Tokens begin at a very low price and ascend the curve as more buyers participate.
  • AMM Graduation: When a token's market cap reaches a defined threshold — approximately $69,000 on Pump.fun — the bonding curve phase ends and the accumulated liquidity is automatically migrated to an established DEX AMM pool, such as Raydium. This transition is referred to as "graduation."
  • Low Graduation Rate: Only approximately 1–2% of tokens launched on Pump.fun ever reach the graduation threshold. The remaining 98–99% effectively become worthless, creating an extreme asymmetry of outcomes across participants.
  • The Paradox of Democratized Token Creation: Frictionless token creation fosters experimentation and innovation but simultaneously provides fertile ground for scams, memecoin speculation, and market manipulation. Insider trading and sniping are endemic to this environment.
  • Revenue Model: The platform charges approximately 1% on every transaction. This model has generated hundreds of millions of dollars in revenue for Pump.fun, making it one of the most economically significant applications in the Solana ecosystem.

The Bonding Curve Launchpad functions as a precursor mechanism to the AMM, with successful tokens transitioning into standard Liquidity Pool-based DEX trading upon graduation. Given the highly speculative nature of early-stage token launches, the dominant risk here is not Impermanent Loss but rather rug pulls and catastrophic price collapses. Solvers operating within Intent-Based Trading platforms also exploit price discrepancies in bonding curve tokens as arbitrage opportunities.


Intent-Based Trading

Definition

Intent-Based Trading is an emerging trading paradigm in which users sign a declaration of their desired outcome — for example, "I want to give 1 ETH and receive at least 1,000 USDC" — rather than specifying the exact execution path (which pools to route through, which contracts to call, etc.). The signed intent is broadcast to a network of off-chain solvers, who compete to find the optimal execution method and settle the trade on-chain on the user's behalf. The solver that delivers the best outcome wins the right to fill the order and typically captures any surplus above the user's minimum requirement as their compensation.

Key Points

  • Separation of Intent and Execution: Users declare what they want; solvers determine how to achieve it. This abstraction shields users from the complexity of DeFi routing and dramatically simplifies the trading experience.
  • MEV Protection: Because solvers compete in an off-chain environment rather than the public mempool, transactions are shielded from frontrunning and sandwich attacks — two of the most prevalent forms of MEV (Maximal Extractable Value) extraction that harm retail traders.
  • Cross-Protocol Optimization: Solvers are not constrained to a single liquidity source. They can aggregate liquidity across multiple AMM pools, order books, private market makers, and even Flash Loans to construct the optimal execution path.
  • Gasless Transactions: In many intent-based systems, users sign messages off-chain without paying gas directly. The solver handles on-chain execution and typically deducts gas costs from the trade surplus, enabling a far smoother user experience.
  • Key Protocols: CoW Protocol (CoW Swap), UniswapX, 1inch Fusion, and Across Protocol are among the leading intent-based trading systems currently operating in production. Each implements a slightly different solver competition and settlement mechanism.

Intent-Based Trading represents a higher-order abstraction that sits above the AMM and Liquidity Pool layer — solvers use these as their primary on-chain liquidity sources, including Concentrated Liquidity positions. The paradigm also has direct implications for Flash Loans, which solvers may incorporate into complex multi-step execution strategies. Oracle infrastructure plays a supporting role in price validation within certain intent-based settlement systems.


Flash Loan

Definition

A Flash Loan is an uncollateralized loan that is borrowed and repaid within a single atomic blockchain transaction. If the borrower cannot repay the full principal plus fee by the end of the transaction, the entire transaction is automatically reverted by the smart contract — as if the loan never occurred. This atomicity guarantee is what makes uncollateralized lending possible: there is zero credit risk to the lender because the loan either completes in full or never happens at all. Aave pioneered Flash Loans in DeFi, and they have since become a powerful tool for arbitrage, collateral swaps, self-liquidation, and a range of other sophisticated on-chain strategies.

Key Points

  • Atomic Execution Guarantee: The loan, its use, and its repayment must all occur within the same transaction block. If any step fails — including repayment — the EVM reverts the entire transaction, returning the pool to its original state.
  • Capital-Free Arbitrage: Flash Loans allow anyone to execute large arbitrage strategies without needing to own the required capital upfront. A trader can borrow millions of dollars, exploit a price discrepancy across DEXs, repay the loan with fees, and pocket the profit — all within a single transaction.
  • Collateral Swap: A borrower who has, say, ETH collateral backing a DAI loan on Aave can use a Flash Loan to repay the DAI debt, withdraw the ETH, swap it for a different collateral asset, re-deposit, and re-borrow — all in one atomic operation, avoiding the need for external capital.
  • Attack Vector: Flash Loans have been used as tools in numerous high-profile DeFi exploits, enabling attackers to temporarily acquire massive amounts of capital to manipulate oracle prices, drain liquidity pools, or exploit protocol logic bugs. Many of the largest DeFi hacks have involved Flash Loans.
  • Fee Structure: Flash Loan fees are typically very low — around 0.05–0.09% on Aave — since there is no credit risk. The fee must be repaid along with the principal within the same transaction.

Flash Loans interact directly with Liquidity Pools, borrowing temporarily from their reserves. They are frequently combined with AMM swaps to execute arbitrage strategies that close price gaps across venues. Oracles are a common target of Flash Loan-based attacks, as borrowed capital can be used to manipulate on-chain price feeds temporarily. Flash Loans are also a tool available to solvers in Intent-Based Trading systems for constructing complex, capital-efficient execution paths.


Oracle

Definition

An Oracle is infrastructure that supplies external, real-world data — most critically, asset prices — to smart contracts that cannot natively access information from outside the blockchain. Smart contracts are deterministic and isolated: they can only read data that exists on-chain. For DeFi protocols that need to know the current price of ETH, BTC, or any other asset to function correctly (e.g., to determine whether a borrowing position is undercollateralized), oracles serve as the indispensable bridge between on-chain logic and off-chain reality. Chainlink is the dominant decentralized oracle network, while Pyth Network has emerged as a leading solution for high-frequency price data, particularly in Solana-based DeFi.

Key Points

  • Price Feed Mechanism: Decentralized oracle networks aggregate price data from multiple off-chain sources (centralized exchanges, market makers, data providers) and publish a volume-weighted or median price on-chain at regular intervals. This aggregation makes manipulation significantly harder than relying on any single source.
  • Oracle Manipulation Attacks: Because many DeFi protocols are priced based on oracle data, corrupting that data is a high-value attack vector. Flash Loan-assisted oracle manipulation — where borrowed capital is used to skew an on-chain price feed momentarily — has been the mechanism behind numerous major DeFi exploits.
  • TWAP (Time-Weighted Average Price): Uniswap v2 and v3 expose a TWAP oracle derived from the pool's historical price data. Averaging prices over a time window makes flash loan-style manipulation economically prohibitive, as attackers would need to sustain a manipulated price across multiple blocks.
  • Push vs. Pull Oracles: Traditional oracle networks (e.g., Chainlink) push updated price data on-chain at regular intervals or when prices move beyond a threshold. Pull-based oracles (e.g., Pyth) store signed price attestations off-chain and allow contracts to pull the latest data on demand, reducing latency and on-chain costs.
  • Oracle Risk in Lending Protocols: Lending protocols like Aave and Compound rely entirely on oracles to determine collateral values and compute Health Factors. An oracle failure — whether due to manipulation, stale data, or network outages — can trigger mass incorrect liquidations or allow undercollateralized positions to persist undetected.

Oracles are critical infrastructure for lending protocols that rely on the Health Factor for liquidation logic. They are a primary attack surface targeted by Flash Loan exploits. AMM-derived price feeds (e.g., Uniswap TWAPs) serve as a decentralized oracle source, while Ethena (USDe) and Pendle both depend on accurate price oracle data for their core protocol mechanics.


Health Factor

Definition

The Health Factor is a numerical metric used by over-collateralized DeFi lending protocols — most notably Aave and Compound — to represent the safety margin of a borrowing position in real time. It is calculated as the ratio of the risk-adjusted value of a user's collateral to the total value of their outstanding debt. A Health Factor above 1 (typically above 1.0 with liquidation triggering below a protocol-defined threshold, often 1.0) means the position is solvent; a Health Factor at or below the liquidation threshold signals that the position is undercollateralized and eligible for liquidation by third-party liquidators.

Key Points

  • Calculation Formula: Health Factor = (Collateral Value × Liquidation Threshold) / Total Borrowed Value. The liquidation threshold is an asset-specific parameter set by governance, reflecting the volatility and risk profile of the collateral asset.
  • Liquidation Mechanism: When a Health Factor drops to or below 1.0, anyone can call the protocol's liquidation function to repay a portion of the borrower's debt in exchange for a discounted portion of their collateral (the liquidation bonus). This incentivizes third-party liquidators to keep the protocol solvent.
  • Dynamic Nature: The Health Factor fluctuates continuously with the market prices of both the collateral and borrowed assets. A sharp decline in collateral value or a significant increase in the price of the borrowed asset can rapidly push a position toward liquidation.
  • Liquidation Cascade Risk: In periods of extreme market volatility, a wave of simultaneous liquidations can create a feedback loop: liquidated collateral sold onto the market depresses prices further, triggering additional liquidations — a dynamic known as a liquidation cascade.
  • Risk Management Best Practices: Borrowers should maintain a comfortable buffer above the liquidation threshold (e.g., a Health Factor of 1.5 or higher), monitor positions actively, and have a plan for adding collateral or repaying debt rapidly during market downturns.

The Health Factor is fundamentally dependent on Oracle price feeds for real-time valuation of collateral and debt. Sophisticated users may use Flash Loans to perform emergency collateral swaps or partial debt repayments to restore a deteriorating Health Factor without requiring external capital. Like Impermanent Loss for LPs, the Health Factor is the central risk gauge that borrowers in DeFi lending markets must continuously track.


Ethena (USDe)

Definition

Ethena is a DeFi protocol that issues USDe, a synthetic dollar that maintains its peg through a delta-neutral hedging strategy rather than traditional over-collateralization or algorithmic mechanisms. The protocol accepts liquid staking tokens (e.g., stETH) as collateral and simultaneously opens a corresponding short position on a centralized derivatives exchange (e.g., a short ETH perpetual futures position). Because the long spot exposure of the collateral is perfectly offset by the short derivatives position, the net delta is zero — meaning the collateral's USD value remains stable regardless of ETH price movements. The staking yield from the collateral and the funding rate income from the short position combine to generate the yield distributed to USDe holders and stakers.

Key Points

  • Delta-Neutral Collateral: If ETH rises in price, the stETH collateral appreciates but the short futures position loses an equivalent amount, and vice versa. The net USD value of the overall position remains constant, maintaining USDe's dollar peg.
  • Dual Yield Sources: USDe stakers earn from two sources simultaneously: (1) the staking yield from the underlying LST collateral (e.g., stETH yield), and (2) the funding rate paid by long traders to short traders in perpetual futures markets. In bull markets, funding rates are persistently positive, generating substantial additional income.
  • Negative Funding Rate Risk: When market sentiment turns bearish and short positions dominate, funding rates can turn negative — meaning Ethena's short positions must pay funding rather than receive it. If funding costs exceed staking yield, the protocol's reserve fund must absorb the shortfall to maintain USDe's peg.
  • Counterparty and Custodial Risk: Ethena's hedging positions are held on centralized exchanges, introducing counterparty risk. The protocol mitigates this through off-exchange custody solutions (e.g., Copper Clearloop) and distributes positions across multiple venues, but the risk cannot be fully eliminated.
  • Scale and Adoption: Ethena's USDe rapidly became one of the largest synthetic dollar assets in DeFi, with billions in circulation, driven by its attractive yield profile — particularly in bull markets where funding rates run high.

Ethena relies on Curve (StableSwap) pools as core liquidity infrastructure for USDe trading and peg maintenance. Oracles are essential for accurate collateral valuation and the risk management systems that monitor the delta-neutral position. USDe has also been integrated into Pendle as a yield-bearing asset, enabling users to trade and speculate on USDe's future yield without direct protocol exposure.


Pendle

Definition

Pendle is a DeFi yield trading protocol that enables users to separate a yield-bearing asset into two distinct components and trade them independently: the Principal Token (PT), which represents the right to redeem the underlying asset at maturity, and the Yield Token (YT), which represents the right to collect all yield generated by the underlying asset until maturity. By tokenizing future yield streams in this manner, Pendle creates a market where users can take fixed-rate positions, speculate on future yield levels, or hedge their yield exposure — effectively bringing the mechanics of interest rate derivatives to DeFi.

Key Points

  • Yield Tokenization: Any yield-bearing token (e.g., stETH, aUSDC, USDe) can be deposited into Pendle to mint a PT and a YT with a specified maturity date. PT + YT always reconstitutes the original underlying asset at maturity.
  • Principal Token (PT): The PT trades at a discount to its face value before maturity. Buying PT is equivalent to locking in a fixed yield: if you buy PT-stETH for 0.95 ETH today and redeem it for 1 ETH at maturity, your effective fixed APY is determined by the discount and the time remaining.
  • Yield Token (YT): The YT is a leveraged bet on future yield rates. If actual yields exceed the implied yield priced into the YT, YT holders profit; if yields fall short, they lose. YT prices are highly sensitive to changes in underlying yield expectations.
  • Pendle AMM: Pendle uses a custom AMM curve inspired by StableSwap, specifically designed to efficiently price and trade PT and YT pairs, accounting for the time decay in their value as maturity approaches.
  • Ecosystem Integration: Pendle has integrated a wide range of yield-bearing assets from across DeFi — including Lido's stETH, Aave's aTokens, Ethena's USDe, and various liquid restaking tokens (LRTs) — making it a central hub for on-chain interest rate markets.

Pendle's AMM draws on the StableSwap pricing curve to handle the unique time-value dynamics of yield tokens. The protocol supports yield-bearing assets from lending platforms where the Health Factor governs risk (e.g., Aave aTokens). Ethena (USDe) is among Pendle's most actively traded assets, allowing users to take fixed-rate positions on USDe yield or speculate on funding rate movements without directly holding Ethena's delta-neutral position. Accurate Oracle data is also essential for Pendle's internal valuation and settlement mechanics.

ChartMentor

이 개념을 포함한 30일 코스

Health Factor 포함 · 핵심 개념을 순서대로 익히고 실전 차트에 적용해보세요.

chartmentor.co.kr/briefguard

What if BG analyzes this pattern?

See how 'Health Factor' is detected on real charts with BriefGuard analysis.

See Real Analysis