Sell + Buyback
When you sell from one wallet, other wallets buy back in the same Jito bundle. Sell TX + buyback TXs land atomically. Max 4 buyback wallets per sell (Jito 5 TX limit).
How it works
- Trigger a sell from any wallet (dev or bundle)
- Ignition builds a Jito bundle: sell TX + buyback TXs
- Each buyback wallet spends:
sellNetSOL * buyPercent / 100 - Buyback wallets use SOL they already hold (not from sell proceeds)
- 1% platform fee on both the sell AND each buyback buy
- Slippage: 25% on sell, 100% on buys (atomic bundle guarantees execution)
- Up to 3 retries on "Invalid" Jito result
Per-wallet config
| Setting | Default | Description |
|---|---|---|
| buyPercent | 100 | % of sell proceeds this wallet uses for buyback (1-100) |
| maxSupplyPercent | 3 | Max % of total supply this wallet can hold. Randomized to 66-100% of this value per trade. |
| fromSell | 1 | Start participating from sell #N. Set to 2+ to skip initial sells. |
Supply cap logic
- Effective cap randomized:
maxSupplyPercent * (0.66 + random * 0.34) - If wallet already at/above cap, skip that wallet entirely
- If calculated tokens would exceed cap, recalculates SOL needed for capped amount using inverse curve math
Interactions
- Mutually exclusive with per-wallet autoSell. If sellBuyback is enabled, autoSell is disabled.
- Sell counter tracked per mint in localStorage:
ql_sellcount_{mint} - Disabled when selling from anti-bubblemap intermediary wallet (no SOL for fees)