12499d4a10
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
36 lines
834 B
Bash
36 lines
834 B
Bash
# LLM API (Gemini official)
|
|
GEMINI_API_KEY=your_api_key_here
|
|
LLM_BASE_URL=https://generativelanguage.googleapis.com/v1beta/openai/
|
|
|
|
# Internal trade data API
|
|
INTERNAL_API_URL=http://103.197.25.170:18088
|
|
INTERNAL_API_KEY=your_internal_api_key_here
|
|
|
|
# Polygon Wallet Private Key (for trade execution)
|
|
POLYGON_WALLET_PRIVATE_KEY=your_private_key_here
|
|
|
|
# MongoDB Connection String
|
|
MONGODB_URI=mongodb://localhost:27017/whale_watcher
|
|
|
|
# Whale Detection Settings
|
|
MIN_TRADE_SIZE_USD=1000
|
|
MIN_PRICE=0
|
|
MAX_PRICE=0.7
|
|
|
|
# Monitoring Settings
|
|
FETCH_INTERVAL_SECONDS=5
|
|
TRENDING_MARKETS_LIMIT=50
|
|
|
|
# LLM Settings
|
|
LLM_MODEL=gemini-3-flash-preview
|
|
LLM_TEMPERATURE=0
|
|
|
|
# Trade Execution (set to true to enable actual trading)
|
|
ENABLE_TRADE_EXECUTION=false
|
|
|
|
# Tavily API Key for web search
|
|
TAVILY_API_KEY=your_tavily_api_key_here
|
|
|
|
# Logging
|
|
LOG_LEVEL=INFO
|