Skip to content
Get 1 year ofChatGPTAvailable models include ChatGPT, Claude, Gemini, Grok, Llama, DeepSeek, Mistral, Qwen, Kimi, Perplexity, GLM, MiniMax, Command, Nemotron, Phi.
/Parameters

Parameters

The protocol constants this build runs on.

These are the values this build runs on, from src/lib/config.ts.

TRADE_FEE2%
Fee on every buy and sell, in ORBIO
SPLIT.holders70%
Holders of the coin that was traded
SPLIT.orbit25%
Everyone holding ORBIT, from every coin, every trade
SPLIT.protocol5%
Protocol liquidity
EPOCH10 minutes
Airdrop interval; every coin shares it
MODESAll · Top 250 · Top 100 · Top 50
Who the holder share pays
SUPPLY1B
Fixed supply per coin
graduationThresholdper coin, from pons
ORBIO a coin must raise into its curve before it graduates
GRADUATING_FROM60%
Curve progress from which a coin shows as Graduating
PAIRORBIO
Quote currency of every coin; the fee and every airdrop are paid in it
MAINORBIO · $0.1
The paired token. Price is a sample, used only for USD equivalents
ORBITORBIT · 1B
The platform token. Holding it earns the 25% pool; supply and price are samples

Everything above is a real constant this build reads. The coins, wallets and transactions it is applied to are generated — see How This Build Works.

src/lib/config.tsts
export const TRADE_FEE = 0.02;export const SPLIT = [  { key: "holders",  share: 0.7 },  { key: "orbit",    share: 0.25 },  { key: "protocol", share: 0.05 },];export const EPOCH_MS = 10 * 60 * 1000;