© 2026 Alchemii
BLOCKCHAIN
How to Add Liquidity to Raydium (2026 Guide)

How to Add Liquidity to Raydium (2026 Guide)

Step-by-step guide to adding liquidity to a Raydium AMM pool on Solana. Cover CPMM vs CLMM, pool selection, IL risk, and how to seed liquidity for your own token launch.

·Alchemii Team

Raydium is the largest AMM on Solana — most memecoin liquidity routes through it. This guide walks through how to add liquidity, whether you're seeding a new token launch or just LPing as a passive earner.

We're Alchemii — we build a Raydium liquidity pool creator and burn tools, so this guide is from inside the workflow.

What "adding liquidity" actually means

When you add liquidity to a Raydium pool, you deposit equal value of two tokens (e.g., $500 worth of YOUR_TOKEN + $500 worth of SOL). In return, you receive LP tokens that represent your share of the pool. As traders swap through the pool, fees accumulate and your LP tokens are worth slightly more over time.

Two scenarios use this:

  1. You're launching a new token and need to seed initial liquidity so anyone can trade it.
  2. You're a passive LP earning fees on an existing market (e.g., SOL/USDC).

The mechanics are the same; the strategy is different. We'll cover both.

Pool types: CPMM vs CLMM

Raydium operates two AMM models:

CPMM (constant product)

  • Math: x * y = k (the original Uniswap v2 model)
  • Liquidity is provided across the full price range (0 → ∞)
  • Simple, low-maintenance, lower capital efficiency
  • Used for: most memecoin launches, low-volume pairs, "set and forget" LPing

CLMM (concentrated liquidity)

  • Math: liquidity concentrated in a price range you choose (e.g., $1.50–$2.00 for SOL)
  • 10-100× more capital efficient at the cost of needing active management
  • If price moves out of your range, you stop earning fees
  • Used for: stablecoin pairs (USDC/USDT), correlated pairs (ETH/stETH), sophisticated LPs

For new memecoin launches: use CPMM. Memecoin price discovery happens across orders of magnitude (micro-cap to mid-cap), and you don't want fee earning to stop just because price exited your range. CLMM also requires picking a tick range, which is one more thing to get wrong.

Scenario 1: Seeding liquidity for your token launch

If you just minted a Solana SPL token (via Alchemii's Token Creator or similar), here's the launch path:

Step 1: Decide your initial price

You need to pick the SOL price for one of your tokens at launch. Common patterns:

| Total Supply | Initial Liquidity (SOL) | Implied Mcap | |---|---|---| | 1B | 5 SOL | ~$1,500 | | 1B | 10 SOL | ~$3,000 | | 1B | 25 SOL | ~$7,500 |

The math: if you put 1B tokens + 10 SOL into the pool, the implied price per token is 10 SOL / 1B = 0.00000001 SOL/token. At $300 SOL, that's ~$0.000003 per token, market cap = $3K.

Rule of thumb: more initial liquidity = less price impact per buy = more comfortable for early buyers. But also more capital at risk if the launch fails. For a serious memecoin launch, 5-15 SOL ($1.5K-$5K) of seed liquidity is typical.

Step 2: Create the Raydium pool

You can do this through:

Pool creation costs ~0.4 SOL (~$60-90 at typical SOL prices) — most of this is rent for the pool's program-derived addresses on-chain. This is a one-time cost.

You'll need to specify:

  • Token A: your token's mint address
  • Token B: SOL (or USDC, but SOL is more common for memecoins)
  • Initial price (calculated from your seed amounts)
  • Fee tier: 0.25% (default), 1% (memecoin standard), or 4% (high-volatility)

For memecoins, 1% is standard — it gives more fees back to LPs and is what Pump.fun uses post-graduation, so it's familiar to traders.

Step 3: Add liquidity = deposit your seeds

After pool creation, deposit your seed amounts:

  • All your launch tokens (or however many you want in the pool)
  • Equal value of SOL (matching the price you set)

Sign the transaction. You'll receive LP tokens to your wallet.

Step 4: Burn the LP tokens (memecoin best practice)

For a memecoin launch, the next step is burning the LP tokens. Burning sends them to the incinerator address (1nc1nerator11111111111111111111111111111111) — they're irretrievable, which means the underlying liquidity is also locked forever.

Use Alchemii's Burn Liquidity tool or send directly:

spl-token transfer <LP_MINT> <ALL_AMOUNT> 1nc1nerator11111111111111111111111111111111

Once burned, your token shows "🔥 LP burned" on DexScreener — the strongest possible anti-rug signal. See our LP burn guide for the deeper mechanics.

Scenario 2: Passive LPing on existing pairs

If you're not launching a token but want to earn fees as a liquidity provider on, say, SOL/USDC:

Pick a pair

Higher-volume pairs earn more fees but face stronger competition (more LPs splitting the pie). Common starting points:

  • SOL/USDC — highest volume, ~5-15% APR typical
  • mSOL/SOL — correlated pair, lower IL, ~3-8% APR
  • popular memecoin/SOL — high APR but high IL risk; one bad weekend can wipe gains

Check Raydium's UI for current APR — they post real-time numbers on each pool.

Choose CPMM or CLMM

For passive LPing on stable/correlated pairs, CLMM is more capital-efficient if you set a tight range. For volatile pairs (memecoin/SOL), CPMM is safer because you're not betting on a specific range.

Deposit + monitor

Add tokens equally by value, receive LP tokens, sit. Track your position via Raydium's UI. Withdraw any time by burning your LP tokens back into the underlying pair.

Impermanent loss: the part nobody mentions

LPing is not risk-free. Impermanent loss (IL) happens when the relative price of your two assets changes after you deposit. Specifically:

  • You deposit $500 of SOL + $500 of USDC at SOL = $200
  • SOL price doubles to $400
  • Your LP position is now worth less than $1500 (the value of just holding the original SOL+USDC)

The "loss" is the difference vs holding. It's offset by trading fees, but only if fees > IL. For volatile memecoin pairs, IL frequently exceeds fees.

General rule: LPing earns money on stable/correlated pairs. On wild memecoin pairs, you're effectively writing a put option — you make small fees most of the time, but get hit hard when the token tanks (you're left holding more of the dropping side).

Common mistakes

  • Setting initial price wrong: if you put in 1B tokens + 100 SOL but meant 10 SOL, your initial price is 10× off. Hard to fix later — most launchers just abandon and re-launch.
  • Forgetting the fee tier: picking 0.25% for a high-volatility memecoin means LPs (you) earn less; picking 4% on a stable pair scares away traders.
  • Burning LP before testing: always do a tiny buy/sell to confirm the pool works before burning. You can't undo a burn.
  • Not revoking authorities first: if your token still has active mint authority when you create the pool, traders see it on Solscan and avoid the pool.
  • Adding insufficient seed liquidity: a pool with $500 of liquidity has 50% price impact on a $250 buy. Nobody buys at that slippage.

Common questions

How long does it take to add liquidity? 1-2 transactions, ~5 seconds total. The slowest part is reviewing the form and double-checking amounts.

What if I make a mistake on initial price? You can remove liquidity (incurring slippage) and recreate the pool. But if you've already burned LP, you're locked in — you'd have to launch a new token.

Can I add more liquidity later? Yes. After pool creation, additional deposits add proportionally to existing liquidity at the current market price. You receive more LP tokens.

What about removing liquidity? Use Alchemii's Remove Liquidity tool or Raydium's UI. Burns LP tokens, returns the underlying tokens at the current pool ratio. If price has moved since you deposited, you'll get a different mix than what you put in (this is the IL effect made concrete).

What's the difference between Raydium and Orca? Both are major Solana AMMs. Raydium has more memecoin liquidity (it's auto-paired with Pump.fun graduations). Orca has cleaner CLMM UX. Either works for launches; Raydium is more discoverable for memecoin launches.

Why does Pump.fun automatically use Raydium post-graduation? Raydium has the deepest memecoin trading volume and the highest visibility on DexScreener and Jupiter. Pump.fun chose it because graduated tokens benefit from immediate aggregator routing.


Want to seed liquidity for a token you just launched? Alchemii's Create Liquidity tool walks through pool creation step-by-step. Don't forget to burn the LP after. Haven't created the token yet? Start with the Solana meme coin creator — five minutes from idea to mainnet token, then come back here to add Raydium liquidity. Or follow the full memecoin launch checklist.

Related guides