Skip to content

Commit a718ae5

Browse files
committed
chore: remove ILBPInitializer interface from introduction
1 parent ce43a43 commit a718ae5

File tree

1 file changed

+3
-14
lines changed

1 file changed

+3
-14
lines changed

docs/contracts/liquidity-launchpad/01-introduction.md

Lines changed: 3 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -58,20 +58,9 @@ The following actions must be performed atomically in one transaction. `Liquidit
5858

5959
3. **Auction Completion**
6060

61-
When the auction ends, all of the raised funds will be swept to a specified `fundsRecipient`. The LBPStrategy will ensure that it is the recipient of both the raised funds and any leftover unsold tokens. The configured `initializer` on the LBPStrategy must implement the `ILBPInitializer` interface to return the necessary data for the pool migration and liquidity creation.
62-
63-
```solidity
64-
// from: https://github.com/Uniswap/liquidity-launcher/blob/main/src/interfaces/ILBPInitializer.sol
65-
struct LBPInitializationParams {
66-
uint256 initialPriceX96; // the price discovered by the contract
67-
uint256 tokensSold; // the number of tokens sold by the contract
68-
uint256 currencyRaised; // the amount of currency raised by the contract
69-
}
70-
71-
interface ILBPInitializer {
72-
function lbpInitializationParams() external view returns (LBPInitializationParams memory params);
73-
}
74-
```
61+
When the auction ends, all of the raised funds will be swept to a specified `fundsRecipient`. The LBPStrategy will ensure that it is the recipient of both the raised funds and any leftover unsold tokens. The configured `initializer` on the LBPStrategy must implement the [ILBPInitializer](https://github.com/Uniswap/liquidity-launcher/blob/main/src/interfaces/ILBPInitializer.sol) interface to return the necessary data for the pool migration and liquidity creation.
62+
63+
The `initializer` returns parameters like the initial price, tokens sold, and currency raised which are used to initialize the pool.
7564

7665
4. **Migrating Liquidity**
7766

0 commit comments

Comments
 (0)