Bundle Mode
Side wallets buy your token in the same Jito bundle as the create TX. All TXs land atomically in one slot, or none do. Max 5 TXs per Jito bundle (TX0 + 4 side wallets). Overflow creates additional bundles.
TX structure
| TX | Contents |
|---|
| TX0 | Token creation + dev buy + platform fee transfer + aggregated side wallet fees |
| TX1-4 | Side wallet buys (createATA + buy instruction + optional anti-map layer 0) |
| Overflow | Additional bundles for wallets beyond the 4-per-bundle limit |
Per-wallet config
| Setting | Type | Description |
|---|
| buySol | number | SOL amount to spend (in sol mode) |
| buyMode | sol | supply | Fixed SOL amount or target % of total supply |
| buySupplyPercent | number | Target % of supply when buyMode=supply. Uses constant-product AMM math. |
| autoSell | { enabled, delayMs } | Sell 100% after N ms post-confirmation. Staggered by 500ms per wallet index. |
| exitStrategy | ExitStrategy | Multi-tranche targets + trailing stop (see Exit Monitor) |
Balance requirements
- Dev wallet: buyAmount + 1% fee + 0.002 SOL flat fee + aggregated SW fees + 0.015 SOL overhead
- Side wallet: buyAmount + 1% fee + 0.0021 SOL ATA rent + Jito tip (if this wallet carries it)
- Jito tip (min 0.005 SOL): deducted from the last side wallet's buy amount, not added on top
- Balance check: batched
getMultipleAccountsInfo for all wallets
Submission strategy
- All 9 Jito endpoints fired simultaneously via
Promise.any - 5-second delayed RPC backup if Jito hasn't confirmed
- Up to 3 retry attempts with fresh blockhash on expiry
- Checks if mint already exists on-chain before retry (RPC backup may have landed)
- Overflow bundles sent after primary bundle confirms
Selling
Post-launch sell panel: per-wallet controls (25/50/75/100%). "NUKE ALL" calls sell on every wallet via Promise.allSettled(). Auto-sell has 3 retry attempts with 2s between.
Limits
| Constraint | Value |
|---|
| Max TXs per Jito bundle | 5 |
| Min Jito tip | 0.005 SOL |
| ATA rent | 0.0021 SOL |
| Compute budget (TX0) | 400,000 CU |
| Compute budget (side TX) | 250,000 CU |
| Blockhash staleness (fast path) | 30 seconds |