1
0

.env.example 783 B

1234567891011121314151617181920212223242526272829303132
  1. # Byreal Sniper Configuration
  2. # Solana RPC URL
  3. RPC_URL=https://mainnet.helius-rpc.com/?api-key=20f2bda7-11af-4e71-a3c3-a8fd6567df80
  4. # Your wallet private key (Base58 encoded)
  5. PRIVATE_KEY=your_private_key_here
  6. # Your wallet address (optional, will be derived from private key)
  7. MY_WALLET=
  8. # Data directory for cache files
  9. DATA_DIR=./data
  10. # Copy multiplier (1.5 = copy with 1.5x the target's position size)
  11. COPY_MULTIPLIER=1.5
  12. # Position value limits (USD)
  13. MAX_USD_VALUE=10
  14. MIN_USD_VALUE=0.1
  15. # Slippage for Jupiter swaps (in basis points, 100 = 1%)
  16. SLIPPAGE_BPS=100
  17. # Polling interval in milliseconds (10000 = 10 seconds)
  18. POLL_INTERVAL_MS=10000
  19. # Authentication header for Byreal API
  20. AUTH_HEADER=Basic YWRtaW46YzU4ODk5Njc=
  21. # Log level (debug, info, warn, error)
  22. LOG_LEVEL=info