Quick Start Guide
Step 1: Basic Configuration
Minimal Configuration
# Connection settings
rpc_url = "https://api.mainnet-beta.solana.com" # Replace with your RPC
grpc_url = "https://your-grpc-endpoint" # Your GRPC endpoint
grpc_token = "your-token" # If required
grpc_engine = "yellowstone" # or "thor"
# Bot mode
mode = "smb" # or "na" or "both"
# Basic settings
update_interval = 10000 # Update every 10 seconds
mints_to_rank = 10 # Track top 10 mints
mints_to_arb = [2, 2] # 2 mints per transaction, 2 groups
# Simple filter
filter_thresholds = [
{
min_profit = 1_000_000,
min_roi = 1.5,
min_txns = 2,
min_total_volume = 100_000_000,
max_cu_limit = 400_000,
top_pool_num = 3
}
]
# Output file
output = "bot-config" # Will create bot-config.toml or .jsonStep 2: Prepare Your Wallet
For SMB-Onchain
For NotArb
Step 3: Start arb-assist
First Run (Testing)
What You'll See
Step 4: Start Your Bot
For SMB-Onchain
For NotArb
Step 5: Monitor Performance
arb-assist Metrics
Bot Performance
Using PM2 Monitoring
Step 6: Basic Optimization
Adjust Filters
Add Fee Strategies
Enable Jito
Common Quick Start Issues
No Mints Found
High Failure Rate
Insufficient Funds
Production Checklist
Next Steps
Fine-tune Your Setup
Advanced Features
Troubleshooting
Getting Help
Last updated