Bonkfun Bundler is a battle-tested CLI tool designed for Solana-based token launches. It helps creators, botters, and protocol engineers handle token creation, wallet seeding, airdrop batching, buy simulation, and cleanup at scale — with advanced features like Jito fee injection and LUT optimization.
- ✅ Create SPL tokens with metadata and vanity options
- ✅ Seed hundreds of wallets with SOL/tokens
- ✅ Auto-buy with distributed wallets for organic volume
- ✅ Manage Address Lookup Tables (LUTs) for tx efficiency
- ✅ Reclaim rent by gathering and closing wallets
- ✅ Tip Jito for MEV-aware txs
- Node.js (v18+ recommended)
- Yarn or npm
- Solana CLI (for wallet management)
- A funded Solana wallet
yarn install
# or
npm install
Create a .env
file in the project root with the following variables:
PRIVATE_KEY=...
RPC_ENDPOINT=...
RPC_WEBSOCKET_ENDPOINT=...
TOKEN_NAME=...
TOKEN_SYMBOL=...
DESCRIPTION=...
TOKEN_SHOW_NAME=...
TOKEN_CREATE_ON=...
TWITTER=...
TELEGRAM=...
WEBSITE=...
FILE=...
VANITY_MODE=false
SWAP_AMOUNT=0.01
DISTRIBUTION_WALLETNUM=10
JITO_FEE=0.001
BUYER_WALLET=...
BUYER_AMOUNT=...
Note: See
constants/constants.ts
for all required variables.
-
Start the bundler (main process):
yarn start # or npm run start
-
Gather funds and close wallets:
yarn gather # or npm run gather
-
Close LUTs:
yarn close # or npm run close
-
Check status:
yarn status # or npm run status