Deep pad

One segment from first trade to graduation; the SDK sets the exact prices.0.5% feeGraduates at 200 SOL

← All configs

Drag across the chart, or focus it and use the arrow keys, to read the price at any point of the raise.1×4×First trade25%50%75%GraduationQuote raised toward graduationPrice vs first tradeSketch — SDK sets the exact start and end45% raised · 2.1×Deep pad curve: 45% raised · 2.1×

Try a buy

Already raised Your buyLeft is the first trade. Right is graduation.

Price before you
Sketch
You pay, on average
Sketch
Price after you
Sketch
Left to graduation
55%

The raise is 35% full. You take the next 10%, leaving it 45% of the way to graduation. The drawing is a sketch of the shape, so the × marks are the shape, not a quoted multiple. Your buy puts in about 20 SOL. A flat 0.5% trading fee sits on the swap and does not change the shape.

Brief

Graduation waits for 200 SOL. The LP that comes out is locked. The mint is Token-2022.

Graduation waits until 200 SOL has been traded in, and 20% of the supply is what gets paired into the new pool. The LP is locked to the launchpad. This is for a pad that wants the coin to leave the curve with a real quote reserve. The mint is Token-2022, with no transfer hook.

Pick this if

  • You want a thick quote reserve before a DAMM v2 pool exists.
  • Your token standard is Token-2022 and you do not need a transfer hook on the config.

Leave it if

  • 200 SOL is more than this community will ever put in. The coin will sit on the curve.
  • You need a transfer hook. That is a different config type.

How the money moves

  • The curve is one segment.
  • It finishes when 200 SOL has been put in. 20% of the supply is what gets paired into the new pool; the rest is what buyers can take along the curve (minus any vest or leftover).
  • The drawing is the shape of that single segment.
  • The SDK sets the exact start and end prices from those two numbers. The trading fee stays at 0.5% for the whole curve. The fee does not add a volatility bump.
  • Trading fees this config assigns go to the launchpad fee-claimer, not the coin creator.
  • After graduation, 100% of the LP is permanently locked to the launchpad fee-claimer. It cannot be pulled. The launchpad wallet can update the token name and image.
  • Mint authority is not left open. The mint is Token-2022. This recipe does not attach a transfer hook. Graduation uses Meteora's 1% migration-fee preset.
  • That slice comes out of the quote before it is paired into DAMM v2.
  • Launching a pool on this config does not charge an extra creation fee.

Numbers

Quote
SOL
Token
Token-2022 · 1,000,000,000 supply · 6 decimals
Graduation target
200 SOL
Supply paired at graduation
20%
Trading fee
0.5% fee
Volatility fee
Off
Creator trading fee
None
LP after graduation
100% locked · 0% withdrawable
Team vest
None
Migration fee preset
1%
Metadata
Launchpad can update

A recipe is numbers you deploy as your own PoolConfig. It is not another pad's address.

Deploy this recipe

create-config.ts· Deep pad
import { NATIVE_MINT } from "@solana/spl-token";
import { Keypair, PublicKey } from "@solana/web3.js";
import {
  ActivationType,
  BaseFeeMode,
  buildCurve,
  CollectFeeMode,
  DynamicBondingCurveClient,
  MigrationFeeOption,
  MigrationOption,
  TokenDecimal,
  TokenType,
  TokenAuthorityOption,
} from "@meteora-ag/dynamic-bonding-curve-sdk";

// Deep pad — deploy a new PoolConfig. Fee claimer is your wallet.
// This does not point launches at another pad's config address.
const curveConfig = buildCurve({
  token: {
    tokenType: TokenType.Token2022,
    tokenBaseDecimal: TokenDecimal.SIX,
    tokenQuoteDecimal: TokenDecimal.NINE,
    tokenAuthorityOption: TokenAuthorityOption.PartnerUpdateAuthority,
    totalTokenSupply: 1_000_000_000,
    leftover: 0,
  },
  fee: {
    baseFeeParams: {
      baseFeeMode: BaseFeeMode.FeeSchedulerLinear,
      feeSchedulerParam: {
        startingFeeBps: 50,
        endingFeeBps: 50,
        numberOfPeriod: 0,
        totalDuration: 0,
      },
    },
    dynamicFeeEnabled: false,
    collectFeeMode: CollectFeeMode.QuoteToken,
    creatorTradingFeePercentage: 0,
    poolCreationFee: 0,
    enableFirstSwapWithMinFee: false,
  },
  migration: {
    migrationOption: MigrationOption.MET_DAMM_V2,
    migrationFeeOption: MigrationFeeOption.FixedBps100,
    migrationFee: { feePercentage: 0, creatorFeePercentage: 0 },
  },
  liquidityDistribution: {
    partnerLiquidityPercentage: 0,
    partnerPermanentLockedLiquidityPercentage: 100,
    creatorLiquidityPercentage: 0,
    creatorPermanentLockedLiquidityPercentage: 0,
  },
  lockedVesting: {
    totalLockedVestingAmount: 0,
    numberOfVestingPeriod: 0,
    cliffUnlockAmount: 0,
    totalVestingDuration: 0,
    cliffDurationFromMigrationTime: 0,
  },
  activationType: ActivationType.Timestamp,
  percentageSupplyOnMigration: 20,
  migrationQuoteThreshold: 200,
});

const config = Keypair.generate();
const partner = /* your launchpad wallet */ new PublicKey("YOUR_FEE_CLAIMER");

const createConfigTx = await client.partner.createConfig({
  config: config.publicKey,
  feeClaimer: partner,
  leftoverReceiver: partner,
  payer: partner,
  quoteMint: NATIVE_MINT,
  ...curveConfig,
});