Migration, we call it graduation, is when your token moves from RektHub’s bonding curve to a decentralized exchange (DEX) like Uniswap or PancakeSwap. It’s not leaving RektHub; it’s your token economy maturing into its next phase.Think of it as your token’s “graduation day” from the fair launch curve to the big leagues of DeFi liquidity.
Your token is eligible for graduation when 850 million tokens have been sold from the bonding curve.
1
850M Tokens Sold
All tradeable supply has been purchased from the curve
2
Token Marked as Bonded
Trading on the curve stops automatically
3
Liquidity Accumulated
Curve has accumulated native currency (mathematically determined by k)
4
Ready for Graduation
150M reserved tokens + accumulated liquidity ready to migrate
You cannot graduate early. The 850M requirement ensures sufficient
liquidity for a healthy DEX pool and rewards creators who build genuine demand.
What's ready to migrate at bonding?
// Bonding state (using 1.5 ETH virtual reserve){ realTokenReserves: 0, // All 850M sold realNativeReserves: ~5.72 ETH, // Determined by constant k reservedTokens: 150,000,000, // Untouched supply for DEX accumulatedCreatorFees: ~0.75 ETH, // Your trading fees (claimable) status: "bonded", readyForGraduation: true}
Note: Values shown use 1.5 ETH virtual reserve (production setting for ETH-based chains). Other chains with different native tokens will have equivalent amounts in their respective currencies.
RektHub charges a 12% fee on the total liquidity being migrated. This fee is split between you and the platform.Migration Fee Breakdown (using 1.5 ETH virtual reserve example):
// Bonding liquidity: ~5.72 ETH (determined by k)const bondingLiquidity = 5.72;// Calculate 12% migration feeconst migrationFee = bondingLiquidity * 0.12; // 0.69 ETH// Split feeconst creatorShare = migrationFee * 0.6; // 0.41 ETH (60%)const platformShare = migrationFee * 0.4; // 0.27 ETH (40%)// Net liquidity to DEXconst liquidityToDEX = bondingLiquidity - migrationFee; // 5.03 ETH// Your total earningsconst tradingFees = 0.75; // Accumulated during bondingconst totalEarnings = tradingFees + creatorShare; // 1.16 ETH total
The remaining liquidity (5.03 ETH + 150M tokens in our example) is sent to your chosen DEX where a liquidity pool is automatically created.
Note: This flow represents the general migration model for EVM chains.
Implementation details vary per chain and DEX, but the core concept remains
consistent. Check chain-specific documentation for exact migration mechanisms.
1
Assets Transferred
5.03 ETH + 150M tokens sent to migrator contract
2
Pool Created
Migrator calls DEX router to create liquidity pool
3
LP Tokens Minted
DEX mints LP tokens representing pool ownership
4
LP Tokens Locked/Burned
LP tokens typically burned or locked forever (no rug pull risk)
When 150M tokens pair with the accumulated ETH on the DEX, there’s typically upward price movement. The exact multiplier depends on the accumulated liquidity and market conditions.
Initial DEX price: 5.03 ETH / 150M = ~0.0000000335 ETH per token
Price ratio compared to curve: Varies based on exact reserves
Post-graduation dynamics:
Early trading activity determines price discovery
Market cap now visible on DEX aggregators
Community engagement affects price action
Typical stabilization within 24-48 hours
Important: Price multiples shown are examples using specific virtual
reserve values. Actual graduation price behavior depends on your chain’s
parameters, accumulated liquidity, and market conditions. These examples
illustrate the concept, not guaranteed outcomes.
Intentional protections: - Liquidity: Once migrated, liquidity is
locked/burned on DEX (no rug pulls) - Trading: Anyone can trade on the DEX
independently - Price: Market determines price through DEX mechanics
The fee is applied to total native currency being migrated.Migration Fee Examples (using different virtual reserves):
Virtual Reserve
Bonding Liquidity
Migration Fee (12%)
Creator Gets (60%)
Platform Gets (40%)
To DEX (88%)
1.5 ETH
~5.72 ETH
~0.69 ETH
~0.41 ETH
~0.27 ETH
~5.03 ETH + 150M
30 ETH
~114.35 ETH
~13.72 ETH
~8.23 ETH
~5.49 ETH
~100.63 ETH + 150M
6 BNB
~22.87 BNB
~2.74 BNB
~1.65 BNB
~1.10 BNB
~20.13 BNB + 150M
30k MATIC
~114,350 MATIC
~13,722 MATIC
~8,233 MATIC
~5,489 MATIC
~100,628 + 150M
Note: Bonding liquidity is mathematically determined by the constant
product formula. Every token using the same virtual reserve will accumulate
approximately the same amount at bonding.
Nobody directly. The fee comes from the accumulated liquidity in the bonding curve. Users already contributed through trading during the bonding phase.
This is a simplified representation. Full implementation includes error
handling, event emissions, and chain-specific logic. See the complete code on
GitHub for your target chain.
Each DEX integration implements a standard migration interface. The exact interface and implementation details vary per chain and DEX.For specific migrator implementations and interfaces, check the chain integration contracts documentation for your target chain.
RektHub’s automated systems handle graduation once your token bonds and you’ve selected your preferred DEX.Process:
Token bonds (850M sold)
Creator selects preferred DEX through dashboard
RektHub’s backend validates the request
Migration executes automatically on-chain
Creator receives confirmation
Automated migration ensures smooth execution without requiring manual contract
interaction from creators. This prevents errors in high-stakes transactions
while maintaining the security of your accumulated liquidity.