Fully pad-locked 13×

A calm first half, then a steep finish — late buyers pay many times the first price.2%37 configs · same curve

← All configs

Drag across the chart, or focus it and use the arrow keys, to read the price at any point of the raise.13.33×1×3×5×7×9×11×13.33×First trade25%50%75%GraduationQuote raised toward graduationPrice vs first trade45% raised · 4.81×Fully pad-locked 13× curve: 45% raised · 4.81×

Try a buy

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

Price before you
3.72×
You pay, on average
4.25×
Price after you
4.81×
Left to graduation
55%

The raise is 35% full. You take the next 10%, leaving it 45% of the way to graduation. The price before you is 3.72× the first trade, and 4.81× after you. Across that slice you pay about 4.25× on average. A flat 2% trading fee sits on the swap and does not change the shape.

Brief

13.33×, 2% fee. LP 100% locked. Example address is not quoted in SOL.

One segment, about 13.33×, a flat 2% fee, and 100% of the LP permanently locked. The creator does not take a trading fee. All 37 configs on this fee-claimer use these numbers. The example address is tied to its own quote mint, not SOL.

Pick this if

  • You want this curve shape, and you understand the quote mint on the example address.
  • You would rather copy a shape that has launches than invent a new one.

Leave it if

  • You need a SOL pair. This example address is not quoted in SOL.
  • You need to be the fee-claimer. This address pays partner fees to the live claimer.

How the money moves

  • The drawing is one bonding segment. By graduation the price is about 13.33× the first trade.
  • On chain that multiple is the migration price divided by the start price.
  • The quote target is denominated in this config's quote mint. It is not a SOL figure, so it is not shown as one. The trading fee stays at 2%.
  • It does not add a volatility bump.
  • Trading fees this config assigns go to the config's fee-claimer. The coin creator's trading-fee share is zero. After graduation, 100% of the LP is permanently locked.
  • It cannot be pulled. The token name and image cannot be changed after launch. Fee timing on this config uses timestamps. These numbers are copied onto a new config per quote.
  • Launching on the example address uses that quote mint and pays partner fees to the live fee-claimer.
  • To keep the fees, deploy your own config with the same shape.

Numbers

Config
D7RC3SF5ncNtoktKDBmTa2LRs3v5fegupq3HC1rB1A3
Fee claimer
4wYGg1KxUroz6Aitgmca64c5wqZW5q1cULCTRJ8dxhyL
Quote
METv…mWQL
Pools on this address
1
Configs with this curve
37 of 37
Price by graduation
13.33× the first trade
Trading fee
2%
Creator trading fee
None
LP after graduation
100% partner locked · 0% creator locked
Token
SPL · 6 decimals
Metadata
Frozen

Read from mainnet on 2026-09-22. Counts can move after that.

Use this config

create-pool.ts· Fully pad-locked 13×
import { PublicKey } from "@solana/web3.js";
import { DynamicBondingCurveClient } from "@meteora-ag/dynamic-bonding-curve-sdk";

// PoolConfig D7RC3SF5ncNtoktKDBmTa2LRs3v5fegupq3HC1rB1A3
// Fee claimer: 4wYGg1KxUroz6Aitgmca64c5wqZW5q1cULCTRJ8dxhyL
// Quote mint: METvsvVRapdj9cFLzq4Tr43xK4tAjQfwX76z3n6mWQL
// Creating a pool here does not make you the fee claimer.
const config = new PublicKey("D7RC3SF5ncNtoktKDBmTa2LRs3v5fegupq3HC1rB1A3");

const createPoolTx = await client.creator.createPool({
  baseMint: baseMint.publicKey,
  config,
  name: "NAME",
  symbol: "TICKER",
  uri: "https://example.com/token.json",
  payer: creator.publicKey,
  poolCreator: creator.publicKey,
});