- Complete bot implementation with TUI dashboard - Trade detection and copying from monitored accounts - Magic Login authentication support - SQLite database for trade persistence - Real-time balance tracking and trade execution - 15-minute window market analysis - Comprehensive error handling and logging
27 lines
657 B
Plaintext
27 lines
657 B
Plaintext
# Polymarket Configuration
|
|
POLYMARKET_PRIVATE_KEY=your_private_key_here
|
|
POLYMARKET_ADDRESS=your_polymarket_address_here
|
|
|
|
# Account to copy trade
|
|
COPY_TRADE_ADDRESS=account_to_copy_address_here
|
|
|
|
# Network Configuration
|
|
NETWORK_RPC_URL=https://polygon-rpc.com
|
|
POLYGON_CHAIN_ID=137
|
|
|
|
# Polymarket API
|
|
POLYMARKET_API_BASE_URL=https://clob.polymarket.com
|
|
POLYMARKET_WS_URL=wss://ws-subscriptions-clob.polymarket.com/ws
|
|
|
|
# Bot Configuration
|
|
POLL_INTERVAL_MS=5000
|
|
SLIPPAGE_TOLERANCE=0.02
|
|
MIN_TRADE_SIZE_USDC=1
|
|
|
|
# Market Filter Configuration
|
|
# Only copy trades from the specified market (e.g., BTC-15M, ETH, etc.)
|
|
BTC_15M_MARKET_ID=BTC-15M
|
|
|
|
# Logging
|
|
LOG_LEVEL=info
|