Even-lock 8.75×

A steady climb that steepens toward graduation.2%835 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×Even-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 50/50 partner/creator. Example quote EMBER, not SOL.

One segment, about 8.75×, a flat 2% fee, LP split evenly and locked. The creator does not take a trading fee. This example is paired with EMBER, not SOL — a pool on it trades against EMBER and pays partner fees to the live fee-claimer. The shape is copied onto a new config per launch rather than sharing one address (835 of 2,954 configs).

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: 50% to the partner and 50% 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
1k15gKd6kRL8uG1PEUjFFSeNjHQTn58kVNcb7ptcgNP
Fee claimer
GZjYfGyUNQfDChcQ66Gc3ZMcQqPEisyRYe1nPyQhP9bp
Quote
EMBER
Pools on this address
1
Configs with this curve
835 of 2,954
Price by graduation
8.75× the first trade
Trading fee
2%
Creator trading fee
None
LP after graduation
50% partner locked · 50% 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· Even-lock 8.75×
import { PublicKey } from "@solana/web3.js";
import { DynamicBondingCurveClient } from "@meteora-ag/dynamic-bonding-curve-sdk";

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

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