| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- # Byreal Sniper Configuration
- # Solana RPC URL
- RPC_URL=https://mainnet.helius-rpc.com/?api-key=20f2bda7-11af-4e71-a3c3-a8fd6567df80
- # Your wallet private key (Base58 encoded)
- PRIVATE_KEY=your_private_key_here
- # Your wallet address (optional, will be derived from private key)
- MY_WALLET=5SCP4PVyqoefiNy2SwDySdcM2KBDncwSkPWYNypSojBk
- # Target wallet to snipe
- TARGET_WALLET=dryuRNL9YcdLnhKFgLfdoj1g2suWcZp97G8XiH8U49e
- # Data directory for cache files
- DATA_DIR=./data
- # Copy multiplier (1.5 = copy with 1.5x the target's position size)
- COPY_MULTIPLIER=0.2
- # Position value limits (USD)
- MAX_USD_VALUE=10
- MIN_USD_VALUE=1
- # Slippage for Jupiter swaps (in basis points, 100 = 1%)
- SLIPPAGE_BPS=100
- # Polling interval in milliseconds (10000 = 10 seconds)
- POLL_INTERVAL_MS=60000
- # Monitoring mode
- # 'api' - Use API polling (slower, more reliable)
- # 'onchain' - Use onchain transaction monitoring (faster, real-time)
- MONITOR_MODE=onchain
- # Jupiter API Key (required for swaps)
- # Get your API key from: https://portal.jup.ag
- JUPITER_API_KEY=da9d807b-6d15-4b7d-b11c-ef96430ee920
- # Authentication header for Byreal API
- AUTH_HEADER=Basic YWRtaW46YzU4ODk5Njch
- # Log level (debug, info, warn, error)
- LOG_LEVEL=info
- # Discord Webhook URL (optional)
- # Sends notifications for copy and close operations
- DISCORD_WEBHOOK_URL=https://discord.com/api/webhooks/1471905016188112960/xOJXKl5oEvoizTFcqHM5BN2O_IR8K_pd8ZtGZBKQpyAf8OTs_Un2mBVkHLqrUykYMY8T
|