A steady climb — each buyer pays a little more than the last.Fee 80% → 2%4× · 40 → 160 SOL mcap
Already raised Your buyLeft is the first trade. Right is graduation.
The raise is 35% full. You take the next 10%, leaving it 45% of the way to graduation. The price before you is 2.05× the first trade, and 2.35× after you. Across that slice you pay about 2.2× on average. If the whole supply were priced along this curve, market cap moves from about 82 SOL to 94 SOL. The trading fee fades with time, so this walk only shows the price.
The curve is a straight line. The fee starts at 80% and melts to 2% over ten minutes.
The price path is a plain straight climb — the auction is in the fee, not the curve. Buying in the first seconds costs an 80% fee, and the fee falls in even steps to 2% over ten minutes, so every buyer picks their own moment on the way down. It suits a hyped mint where nobody agrees on the opening price and you would rather the market bid the fee down than let bots sweep a cheap open.
A recipe is numbers you deploy as your own PoolConfig. It is not another pad's address.
import { NATIVE_MINT } from "@solana/spl-token";
import { Keypair, PublicKey } from "@solana/web3.js";
import {
ActivationType,
BaseFeeMode,
buildCurveWithLiquidityWeights,
CollectFeeMode,
DynamicBondingCurveClient,
MigrationFeeOption,
MigrationOption,
TokenDecimal,
TokenType,
TokenAuthorityOption,
} from "@meteora-ag/dynamic-bonding-curve-sdk";
// Dutch open — deploy a new PoolConfig. Fee claimer is your wallet.
// This does not point launches at another pad's config address.
const curveConfig = buildCurveWithLiquidityWeights({
token: {
tokenType: TokenType.SPLToken,
tokenBaseDecimal: TokenDecimal.SIX,
tokenQuoteDecimal: TokenDecimal.NINE,
tokenAuthorityOption: TokenAuthorityOption.PartnerUpdateAuthority,
totalTokenSupply: 1_000_000_000,
leftover: 0,
},
fee: {
baseFeeParams: {
baseFeeMode: BaseFeeMode.FeeSchedulerLinear,
feeSchedulerParam: {
startingFeeBps: 8000,
endingFeeBps: 200,
numberOfPeriod: 60,
totalDuration: 600,
},
},
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,
initialMarketCap: 40,
migrationMarketCap: 160,
liquidityWeights: [1, 1, 1, 1],
});
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,
});