12345678910111213141516171819202122232425262728293031 |
- # Pacifica API Configuration
- PACIFICA_API_KEY=your_api_key_here
- PACIFICA_BASE_URL=https://api.pacifica.fi
- WEBSOCKET_URL=wss://ws.pacifica.fi
- # System Configuration
- NODE_ENV=development
- PORT=3000
- LOG_LEVEL=info
- ENCRYPTION_KEY=your_32_character_encryption_key_here
- # Database Configuration (if using persistent storage)
- DATABASE_URL=postgresql://user:password@localhost:5432/wash_trading
- # Rate Limiting
- RATE_LIMIT_WINDOW_MS=60000
- RATE_LIMIT_MAX_REQUESTS=100
- # Risk Management
- DEFAULT_MAX_POSITION_SIZE=0.1
- DEFAULT_STOP_LOSS_THRESHOLD=0.05
- DEFAULT_MAX_SLIPPAGE=0.02
- # Performance
- MAX_CONCURRENT_ACCOUNTS=20
- MAX_CONCURRENT_SESSIONS=5
- ORDER_EXECUTION_TIMEOUT=30000
- # Security
- JWT_SECRET=your_jwt_secret_here
- SESSION_SECRET=your_session_secret_here
|