LP Tokens
When you add liquidity to a V2 pool, you receive LP tokens — fungible ERC-20 tokens that represent your proportional share of the pool.Minting
LP tokens are minted when you deposit both tokens into a pool. First deposit (new pool): A small amount (MINIMUM_LIQUIDITY = 1000 wei) is permanently locked to prevent division-by-zero attacks.
Subsequent deposits:
You must deposit tokens at the current reserve ratio. Any excess of one token is refunded.
Burning
To withdraw liquidity, you burn your LP tokens and receive both tokens back: Because fees accumulate in reserves, the amount you receive will be greater than what you deposited (assuming trading volume occurred).Properties
| Property | Description |
|---|---|
| Standard | ERC-20 |
| Transferable | Yes — can be sent, traded, or used in other protocols |
| Supply | Increases with deposits, decreases with withdrawals |
| Value | Backed by the pool’s token reserves |
Impermanent Loss
LP tokens are subject to impermanent loss — when the relative price of the two tokens changes from the time of deposit, the LP’s position is worth less than simply holding both tokens. The loss is “impermanent” because it reverses if the price returns to the original ratio. The magnitude of impermanent loss depends on the price change:| Price Change | Impermanent Loss |
|---|---|
| 1.25x | 0.6% |
| 1.50x | 2.0% |
| 2x | 5.7% |
| 3x | 13.4% |
| 5x | 25.5% |