# Polymarket Live Trading — Environment Configuration # Copy this file to .env and fill in your values: # cp .env.example .env && chmod 600 .env # # NEVER commit .env to version control. # NEVER use your main wallet. Create a dedicated burner wallet. # Required: Burner wallet private key (with 0x prefix) # Create one with: cast wallet new OR python -c "from eth_account import Account; a=Account.create(); print(f'Address: {a.address}\nKey: {a.key.hex()}')" POLYMARKET_PRIVATE_KEY=0x_YOUR_BURNER_WALLET_PRIVATE_KEY_HERE # Required: Safety gate — must be "true" for any trade to execute POLYMARKET_CONFIRM=true # Max dollars per trade (start small!) # First time: $5 | Learning: $10 | Experienced: $50 | Advanced: $200 POLYMARKET_MAX_SIZE=5 # Max daily loss before all trading halts # First time: $10 | Learning: $25 | Experienced: $100 | Advanced: $500 POLYMARKET_DAILY_LOSS_LIMIT=10