Skip to content

LaChance-Lab/BNB-FourMeme-Pancake-Swap-Volume-Bot

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

8 Commits
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

πŸ€– EVM Volume Trading Bot

Automated Volume Generation for EVM-Compatible Chains

TypeScript Solidity Ethereum BSC

πŸ“± Contact β€’ πŸŽ₯ Demo β€’ πŸ“Š Examples


πŸ“‹ Table of Contents


🌟 Overview

A sophisticated trading bot that generates organic trading volume on EVM-compatible chains by simulating real trader behavior through multiple wallet interactions. Perfect for token launches, liquidity testing, and market making activities.

πŸ”— Supported Chains

Chain Status Network ID
🟑 Binance Smart Chain (BSC) βœ… Supported 56
πŸ”΅ Ethereum Mainnet βœ… Supported 1
🟣 Sepolia Testnet βœ… Supported 11155111
βšͺ Any EVM Chain βœ… Supported Custom

✨ Features

  • 🎲 Random Wallet Generation - Creates multiple sub-wallets for authentic trading patterns
  • πŸ’° Automated Funding - Distributes funds across wallets automatically
  • πŸ“ˆ Realistic Trading - Simulates real trader behavior with randomized amounts and intervals
  • πŸ”„ Fund Recovery - Gathers funds back to main wallet after operations
  • πŸ›‘οΈ Wallet Persistence - Saves generated wallets to JSON for fund recovery
  • ⚑ Configurable Parameters - Full control over timing, amounts, and wallet count

πŸ› οΈ Technology Stack

  • Language: TypeScript
  • Smart Contracts: Solidity
  • Type: Automated Bot Script
  • Networks: Multi-chain EVM support

πŸš€ Quick Start

1️⃣ Installation

npm install

2️⃣ Environment Setup

Edit your .env file with your wallet credentials:

ETH_BASE_WALLET_ADDRESS="Your wallet address here"
ETH_BASE_WALLET_PRIVATE_KEY="Your private key here"

⚠️ Security Note: Never share your private keys or commit them to version control!

πŸ’‘ RPC Endpoints: Default RPC addresses are included but are free tier. For better performance, use your own paid RPC endpoints.

3️⃣ Run the Bot

npm run dev

βš™οΈ Configuration

Basic Configuration (config.json)

// Trading Intervals (milliseconds)
export const maxInterval = 30000  // Maximum time between trades
export const minInterval = 5000   // Minimum time between trades

// Wallet Funding Amounts (ETH/BNB)
export const amountMax = 0.03     // Maximum balance per wallet
export const amountMin = 0.01     // Minimum balance per wallet (β‰₯ 0.001)

// Gas Fee Reserve
export const fee = 0.005          // Reserved for transaction fees (β‰₯ 0.001)

// Wallet Configuration
export const subWalletNum = 20    // Number of sub-wallets to generate

// Target Chain
export const CHAINID: ChainId = ChainId.BSC

πŸ’° Funding Calculator

Formula: (amountMax + fee) Γ— subWalletNum

Example:

Configuration:
- amountMax: 0.03 ETH/BNB
- fee: 0.005 ETH/BNB  
- subWalletNum: 20

Required Balance: (0.03 + 0.005) Γ— 20 = 0.7 ETH/BNB

πŸ“ Recommendations

Parameter Recommended Value Notes
fee 0.01 - 0.06 Higher fee ensures successful transactions and easier fund recovery
amountMin β‰₯ 0.001 Minimum viable trading amount
subWalletNum 10 - 50 Balance between volume and management complexity

πŸ’‘ Pro Tip: Use a higher fee value (e.g., 0.01) to ensure smooth operation and easy fund recovery in case of errors.

πŸ” Backup: The bot automatically creates a JSON file with generated wallets, allowing you to withdraw funds manually if needed.


πŸŽ₯ Demo

Watch the bot in action:

bsc-volume-bot.1.mp4

πŸ“Š Live Transactions

Real Transaction Examples on BSC

Transaction Link
TX 1 View on BSCScan
TX 2 View on BSCScan
TX 3 View on BSCScan

πŸ—ΊοΈ Roadmap

  • Smart Amount Randomization - More sophisticated trading amount distribution
  • Dynamic Frequency Control - Adaptive buy/sell frequency based on market conditions
  • Multi-Pool Support - Randomized pool selection for distributed volume
  • Automatic Fund Gathering - Enhanced automated fund recovery system
  • Advanced Analytics - Trading statistics and performance metrics
  • GUI Dashboard - Web interface for easier configuration and monitoring

πŸ“ž Contact

πŸ’¬ Telegram: t.me/lachancelab


⚠️ Disclaimer

This bot is for educational and testing purposes. Always comply with local regulations and exchange terms of service. Use responsibly.


Made with ❀️ by LaChanceLab

About

BNB four.meme / Pancake swap Volume bot

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors