Creating a Liquidity Pool on Solana with Raydium SDK v2: Step by Step Guide
When creating a liquidity pool for your token on the Solana blockchain, it is important to understand the different approaches and tools available. In this article, we will look at two popular methods of creating a liquidity pool using the Raydium SDK v2: OpenBook and Liquidity Pool.
OpenBook MarketID
You are right, many online resources offer to start with OpenBook marketID. However, as you have discovered, OpenBook is not available directly on the Raydium SDK v2. Instead, you can use a workaround to create an OpenBook-like structure using the Liquidity Pools module.
To create an OpenBook in Solana without an actual OpenBook marketID, follow these steps:
- Create a new liquidity pool on your preferred exchange (for example, Uniswap or SushiSwap).
- Configure the pool as desired (for example, set a pair of tokens and reserve amounts).
- Use the
raydium
SDK v2 to create a new liquidity pool by passing in the existing pool configuration.
- Set up a liquidity pool on the Raydium platform using the
liquidity_pools
module.
Here’s an example of a code snippet that illustrates this process:
import raydium

Creation of a new liquidity pool with an existing configurationpool = raydium.LiquidityPool(
name="Programmatically",
token_pair=(PROGRAGMATIC_TOKEN_ID, PROGRAGMATIC_TOKEN_ID),
reserve_amounts=({
"programmatic_token": 1000000,
"other_token": 500000
}),
liquidity_pool_id="123456789"
)
Creating a liquidity pool on the Raydium platformraydium.create_liquidity_pools(
pool
market_ids=None,
You can skip this to create an OpenBook)
Liquidity Pool with MarketID
If you still want to create a real OpenBook marketID, you will need to use the built-in creation functions liquidity pool raydium
SDK v2. Here are the steps:
- Create a new liquidity pool on your preferred exchange (for example, Uniswap or SushiSwap).
- Configure the pool as desired (for example, set the token pair and reserve amounts).
- Use the
raydium
SDK v2 to create a new liquidity pool with an existing marketID:
import raydium
Create a new liquidity pool with the existing configurationpool = raydium.LiquidityPool(
name="Programmatically",
token_pair=(PROGRAGMATIC_TOKEN_ID, PROGRAGMATIC_TOKEN_ID),
reserve_amounts=({
"programmatic_token": 1000000,
"other_token": 500000
}),
market_id="123456789"
Replace with desired OpenBook marketID)
Create a liquidity pool on the Raydium platformraydium.create_liquidity_pools(
pool,
Pass the existing pool configuration)
Conclusion
In conclusion, although the creation of OpenBook without an actual OpenBook market identifier may appear illogical, both methods can be used depending on your specific use case. The raydium
SDK v2 provides a flexible way to create liquidity pools and market identifiers using the Liquidity Pools module. By understanding these different approaches, you will be better prepared to create a liquidity pool structure that fits your needs.
Additional Resources
- Raydium SDK v2 documentation: <
- Solana Ecosystem Resources: <
Note: The Liquidity Pools module is still a relatively new feature, and more documentation and tutorials will be available in the future.
发表回复