- Sniping: Lightning-fast token sniping on Pump.fun, Raydium, Meteora, and more.
- Copy Trading: Automatically replicate trades from top-performing wallets.
- Anti-MEV Support: Protect your trades from MEV attacks.
- Jito Integration: Ultra-fast transaction confirmations.
- Scrapers: Real-time alpha from Discord, Telegram, and Twitter.
- NFT Tools: Launch and snipe NFTs on MagicEden.
- Volume Bot: Simulate trading activity to influence token volume.
- Customizable Selling: Set precise sell orders to maximize profits.
- All-In-One Solution: From sniping to NFTs, this bot does it all.
- High Performance: Built for speed and efficiency.
- Easy to Use: Intuitive interface and detailed documentation.
This is where legends are made.
Imagine this: the market moves at lightning speed, and you’re always one step ahead. Tokens launch, and you’re there — sniping them before the crowd even notices. Wallets pump, and you’re already riding the wave, your profits soaring while others scramble to catch up.
This isn’t just a bot. This is your edge.
src/
├── core/
│ ├── token.rs # Token definitions and handling
│ └── tx.rs # Transaction handling
│
├── engine/
│ ├── swap.rs # Token swap (buy/sell) functionalities in various DEXs
│ └── monitor/ # New token monitoring (and parse tx) in DEXs using Geyser RPC and normal RPC
│ ├── helius.rs # Helius gRPC for tx listen and parse
│ └── yellowstone.rs # Yellowstone gRPC for tx listen and parse
│
├── dex/
│ ├── pump_fun.rs # Pump.fun
│ ├── raydium.rs # Raydium
│ ├── meteora.rs # Meteora
│ ├── jupiter.rs # Jupiter
│ └── orca.rs # Orca
│
├── services/
│ ├── jito.rs # Jito service provides ultra-fast transaction confirmation
│ ├── nextblock.rs # NextBlock service provides ultra-fast transaction confirmation in a unique way
│ ├── anti_mev.rs # Anti-MEV support
│ └── bloxroute.rs # Bloxroute support
│
├── scrapers/
│ ├── twitter.rs # Twitter Scraper for trading signals
│ ├── telegram.rs # Telegram Scraper for trading signals
│ └── discord.rs # Discord Scraper for trading signals
│
├── tools/
│ ├── balance_checker.rs # Balance Checker for wallets
│ ├── wallet_generator.rs # Wallet Generator
│ ├── wrap_sol.rs # Wrap SOL functionality
│ └── unwrap_sol.rs # Unwrap SOL functionality
│
├── strategies/
│ ├── copy_trading.rs # Copy Trading functionality
│ ├── sniper/ # Sniper strategies
│ │ ├── afk_sniper.rs # AFK Sniper
│ │ ├── meteora_dlmm_sniper.rs # Meteora DLMM Sniper
│ │ ├── meteora_sniper.rs # Meteora Sniper
│ │ ├── pump_fun_sniper.rs # PumpFun Sniper
│ │ ├── raydium_sniper.rs # Raydium Sniper
│ │ └── shitcoin_sniper.rs # Solana Shitcoin Sniper
│ └── migration/ # Migration strategies
│ ├── pump_fun_raydium_dumper.rs # PumpFun - Raydium Migration Dumper
│ └── pump_fun_raydium_sniper.rs # PumpFun - Raydium Migration Sniper
│
├── common/
│ ├── logger.rs # Logs to be clean and convenient to monitor
│ └── utils.rs # Utility functions used across the project
│
├── lib.rs
└── main.rs