A fully modular, high-performance new-token sniper bot designed specifically for the Four.Meme ecosystem on Binance Smart Chain (BSC). This bot monitors newly created tokens in real time, performs advanced safety analysis, and executes automated buy/sell strategies with precise controls.
For professional development, bot customization, or private consulting:
Preferred method for quick chat:
Also available on:
- WhatsApp:
+1 (838) 273-9959 - Email: dev9999989@gmail.com
- Live monitoring of Four.Meme new token events via WSS
- Mempool scanning for ultra-low latency execution
- Auto-fetch of token metadata, deployer address, liquidity, and supply
- Honeypot simulation (pre-trade check)
- Buy/Sell tax detection
- Contract ownership & renounce status
- Blacklist / hidden privileged function scanning
- Liquidity verification (added, size, lock detection)
- Risk scoring (0–100)
-
Ultra-fast transaction construction using:
- Nonce queues
- Gas optimization
- Pre-built router calls
-
Configurable:
- Buy amount
- Max slippage
- Gas price / priority fee
- Take-profit (TP)
- Stop-loss (SL)
- Trailing stop
- Auto-sell on defined conditions
- Manual override support
- Multi-wallet support
- Isolated modules for scanning, trading, safety, utils
- Scalable for custom strategies or dashboards
- Structured JSON logs
- Transaction tracking (buy, sell, failed, profit/loss)
- Error-tolerant reconnect logic
npm installCopy .env.example to .env:
cp .env.example .env
Fill in:
RPC_WSS_URLRPC_HTTPS_URLPRIVATE_KEYS(comma-separated for multi-wallet mode)
Edit config/bot.config.json:
Example:
{
"buyAmount": "0.05",
"maxSlippage": 8,
"minLiquidity": 0.5,
"enableSafetyScanner": true,
"takeProfit": 50,
"stopLoss": 15,
"autoSell": true,
"wallets": ["PK1", "PK2"]
}npm run devnpm run buildnpm startsrc/
├── core/ # Provider, RPC management, websocket handlers
├── scanner/ # Honeypot tests, tax checks, contract analysis
├── sniper/ # Buy/sell engines, gas logic, nonce management
├── utils/ # ABIs, logger, helpers, math utilities
├── config/ # Config parsing, validation, types
└── index.ts # Main entry point
This project is released under the MIT License. You may modify, distribute, or use it within the terms of the license.