Pad-heavy lock 8.75×

A steady climb that steepens toward graduation.2%301 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.8.75×1×3×5×7×8.75×First trade25%50%75%GraduationQuote raised toward graduationPrice vs first trade45% raised · 3.54×Pad-heavy lock 8.75× curve: 45% raised · 3.54×

Try a buy

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

Price before you
2.84×
You pay, on average
3.18×
Price after you
3.54×
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 2.84× the first trade, and 3.54× after you. Across that slice you pay about 3.18× on average. A flat 2% trading fee sits on the swap and does not change the shape.

Brief

8.75×, 2% fee. Locked LP splits 70/30 partner/creator. Example quote GMEx, not SOL.

Same 8.75× curve and flat 2% fee, but locked LP is 70% partner / 30% creator. 301 configs use this split. The example address is paired with GMEx, a badged stock quote, not SOL. A pool on it trades against GMEx.

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 8.75× 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 the LP is fully locked: 70% to the partner and 30% to the creator. Neither side can pull it. 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
533ukWUXbTfuf1GfxupatsuusykBaxTB8jrot3kRgb4
Fee claimer
GZjYfGyUNQfDChcQ66Gc3ZMcQqPEisyRYe1nPyQhP9bp
Quote
GMEx
Pools on this address
1
Configs with this curve
301 of 2,954
Price by graduation
8.75× the first trade
Trading fee
2%
Creator trading fee
None
LP after graduation
70% partner locked · 30% 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· Pad-heavy lock 8.75×
import { PublicKey } from "@solana/web3.js";
import { DynamicBondingCurveClient } from "@meteora-ag/dynamic-bonding-curve-sdk";

// PoolConfig 533ukWUXbTfuf1GfxupatsuusykBaxTB8jrot3kRgb4
// Fee claimer: GZjYfGyUNQfDChcQ66Gc3ZMcQqPEisyRYe1nPyQhP9bp
// Quote mint: GMEx
// Creating a pool here does not make you the fee claimer.
const config = new PublicKey("533ukWUXbTfuf1GfxupatsuusykBaxTB8jrot3kRgb4");

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,
});