Skip to content

Fourmeme bot, BSC bot, BNB bot, Fourmeme volume bot, BSC volume bot, Fourmeme trading bot, BSC trading bot, BNB trading bot, Fourmeme Stealth bot, BNB trading bot, BSC trading bot,

Notifications You must be signed in to change notification settings

0xAxon7/Fourmeme-bsc-bnb-stealth-trading-bot-tools

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Fourmeme Bot · BSC Bot · BNB Bot · Fourmeme Volume Bot · Stealth Bot

Fourmeme botBSC bot and BNB bot for Four.meme. Fourmeme volume bot and Fourmeme trading bot with stealth bot funding on BSC. BSC volume bot and BNB trading bot with migration detection, dual exchange (Four.meme + PancakeSwap), and multi-wallet volume trading.

About this repository

Fourmeme bot · BSC bot · BNB bot · Fourmeme volume bot · BSC volume bot · Fourmeme trading bot · BSC trading bot · BNB trading bot · Stealth bot. TypeScript Fourmeme trading bot for four.meme tokens on BSC: Fourmeme volume bot with stealth bot funding, automatic migration detection, and dual exchange support. Use as a BSC bot or BNB bot for volume and trading on Four.meme.

Contact

If you have any questions or would like a more customized app for specific use cases, please feel free to contact us at the contact information below.

Quick Start

1. Install Dependencies

npm install

2. Configure Environment

Create a .env file in the project root:

# Required
PRIVATE_KEY=0x...
RPC_URL=https://bsc-dataseed.binance.org
TOKEN_ADDRESS=0x...  # Required for trading, optional for distribution

# Web UI
UI_PORT=3000

# Volume Bot Settings
TOTAL_BNB=18
TOTAL_NUM_WALLETS=50
MIN_DEPOSIT_BNB=0.01
MAX_DEPOSIT_BNB=0.02
MIN_BUY_NUM_PER_CYCLE=3
MAX_BUY_NUM_PER_CYCLE=5
MIN_BUY_PERCENT_BNB=100
MAX_BUY_PERCENT_BNB=100
MIN_PERCENT_SELL=0
MAX_PERCENT_SELL=0
MIN_PERCENT_SELL_AMOUNT_AFTER_BUY=50
MAX_PERCENT_SELL_AMOUNT_AFTER_BUY=80
CYCLE_LIMIT=3
MIN_PER_CYCLE_TIME=5000
MAX_PER_CYCLE_TIME=10000
MIN_DELAY_BUY=2000
MAX_DELAY_BUY=8000
MIN_DELAY_SELL=4000
MAX_DELAY_SELL=12000
GAS_BUFFER_BNB=0.001

# Features
STEALTH_MODE=true
USE_PANCAKE_AFTER_MIGRATION=true
DISTRIBUTE_ONLY=false

3. Run the Fourmeme bot (BSC bot / BNB bot)

Web UI (Recommended):

npm run ui

Open http://localhost:3000 in your browser.

Command Line:

# Distribution only (Phase 1) — Fourmeme volume bot / stealth bot funding
DISTRIBUTE_ONLY=true npm run start

# Trading mode (Phase 2 - requires TOKEN_ADDRESS) — Fourmeme trading bot / BSC trading bot
npm run start

# Gather funds from wallets
npm run gather

Features

  • Fourmeme volume bot / BSC volume bot: Automated multi-wallet volume trading with stealth bot funding
  • Fourmeme trading bot / BSC trading bot / BNB trading bot: Trades on Four.meme before migration, PancakeSwap after
  • Migration Detection: Automatically detects if token has migrated to PancakeSwap
  • Dual Exchange Support: Fourmeme bot trades on Four.meme, then PancakeSwap post-migration
  • Stealth bot: StealthFund contract for funding wallets (optional)
  • Two-Phase Workflow: Separate BNB distribution from trading
  • Pause/Resume: Save and resume trading cycles
  • Wallet Reuse: Continue using existing wallets after cycles complete
  • Web UI: User-friendly interface for BSC bot control and monitoring

How the Fourmeme bot (BSC bot / BNB bot) works

Two-Phase Workflow

Phase 1: Distribution (No token address needed)

  • Fourmeme volume bot creates wallets and distributes BNB
  • Stealth bot mode: StealthFund contract (if STEALTH_MODE=true); otherwise direct transfers
  • Funds wallets sequentially to avoid nonce conflicts

Phase 2: Trading (Requires token address)

  • Fourmeme trading bot / BSC trading bot uses existing funded wallets
  • Approves tokens and executes buy/sell cycles
  • Saves state after each cycle for pause/resume
  • BSC bot automatically detects migration and switches to PancakeSwap

Migration Detection

The Fourmeme bot (BSC bot) checks liquidityAdded status from Helper3 contract:

  • false = Token on Four.meme (uses Four.meme contracts)
  • true = Token migrated to PancakeSwap (uses PancakeRouter)

State Files

wallets.json: Tracks all wallet activity and balances bot-state.json: Saves current cycle for pause/resume (auto-cleared when complete)

Environment Variables

Required

Variable Description
PRIVATE_KEY Your wallet private key
RPC_URL BSC RPC endpoint
TOKEN_ADDRESS Token contract address (for trading)

Contract Addresses (defaults provided)

Variable Default
PANCAKE_ROUTER_ADDRESS 0x10ED43C718714eb63d5aA57B78B54704E256024E
WBNB_ADDRESS 0xbb4CdB9CBd36B01bD1cBaEBF2De08d9173bc095c
STEALTH_FUND_ADDRESS 0x3774b227aee720423a62710c7Ce2D70EA16eE0D0
TOKEN_MANAGER2 0x5c952063c7fc8610FFDB798152D69F0B9550762b
HELPER3_ADDRESS 0xF251F83e40a78868FcfA3FA4599Dad6494E46034

Fourmeme volume bot / BSC volume bot settings

Variable Description Default
TOTAL_BNB Total BNB to use 18
TOTAL_NUM_WALLETS Total wallets to create 50
MIN_DEPOSIT_BNB Min BNB per wallet 0.01
MAX_DEPOSIT_BNB Max BNB per wallet 0.02
MIN_BUY_NUM_PER_CYCLE Min wallets to buy per cycle 3
MAX_BUY_NUM_PER_CYCLE Max wallets to buy per cycle 5
MIN_BUY_PERCENT_BNB Min % of BNB to spend 100
MAX_BUY_PERCENT_BNB Max % of BNB to spend 100
MIN_PERCENT_SELL Min % of wallets to sell 0
MAX_PERCENT_SELL Max % of wallets to sell 0
MIN_PERCENT_SELL_AMOUNT_AFTER_BUY Min % of tokens to sell 50
MAX_PERCENT_SELL_AMOUNT_AFTER_BUY Max % of tokens to sell 80
CYCLE_LIMIT Number of trading cycles 3
MIN_PER_CYCLE_TIME Min ms between cycles 5000
MAX_PER_CYCLE_TIME Max ms between cycles 10000
MIN_DELAY_BUY Min delay before buy (ms) 2000
MAX_DELAY_BUY Max delay before buy (ms) 8000
MIN_DELAY_SELL Min delay before sell (ms) 4000
MAX_DELAY_SELL Max delay before sell (ms) 12000
GAS_BUFFER_BNB BNB buffer for gas 0.001

Feature Flags

Variable Description Default
STEALTH_MODE Stealth bot: use StealthFund for funding true
USE_PANCAKE_AFTER_MIGRATION Auto-switch to PancakeSwap true
DISTRIBUTE_ONLY Distribution-only mode (CLI only) false
UI_PORT Web UI port 3000

Troubleshooting

"Insufficient BNB balance": Add more BNB to your main wallet

"Token address is required for trading": Set TOKEN_ADDRESS in .env or enter it in the UI

"Wallets are already funded": Normal - bot checks actual blockchain balances

"SKIPPED_LOW_DEPOSIT": Increase MIN_DEPOSIT_BNB or reduce GAS_BUFFER_BNB

"Funding failed": Check StealthFund contract or disable STEALTH_MODE

"Disabled" error: Token migrated - bot will auto-detect and switch to PancakeSwap

Keywords (SEO)

  • Fourmeme botFourmeme bot for Four.meme on BSC; volume and trading.
  • BSC botBSC bot for Four.meme: Fourmeme volume bot, Fourmeme trading bot, stealth bot.
  • BNB botBNB bot for Four.meme token volume and trading on BSC.
  • Fourmeme volume botFourmeme volume bot / BSC volume bot: multi-wallet volume with stealth bot funding.
  • BSC volume bot – Same as Fourmeme volume bot; runs on BSC.
  • Fourmeme trading botFourmeme trading bot / BSC trading bot / BNB trading bot: dual exchange, migration detection.
  • Stealth botStealth bot funding via StealthFund contract for Fourmeme bot wallets.
  • Related: fourmeme bot, bsc bot, bnb bot, fourmeme volume bot, bsc volume bot, fourmeme trading bot, bsc trading bot, bnb trading bot, stealth bot, four.meme bot, BSC trading bot.

Security

  • Never commit .env files or wallets.json to version control
  • Test with small amounts first
  • Keep private keys secure
  • Use private RPC endpoints when possible

Development

# Install dependencies
npm install

# Run Fourmeme volume bot / BSC bot
npm run start

# Run gather utility
npm run gather

# Start web UI
npm run ui

# Type checking
npx tsc --noEmit

License

MIT


Git repo About (copy for description): Fourmeme bot · BSC bot · BNB bot · Fourmeme volume bot · BSC volume bot · Fourmeme trading bot · BSC trading bot · BNB trading bot · Stealth bot. Four.meme volume and trading bot on BSC with stealth funding, migration detection, dual exchange (Four.meme + PancakeSwap).

About

Fourmeme bot, BSC bot, BNB bot, Fourmeme volume bot, BSC volume bot, Fourmeme trading bot, BSC trading bot, BNB trading bot, Fourmeme Stealth bot, BNB trading bot, BSC trading bot,

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published