20 lines
1.1 KiB
Bash
20 lines
1.1 KiB
Bash
# ==================================================
|
|
# Required: only these two; all other config is set in the frontend panel
|
|
# ==================================================
|
|
|
|
# Polymarket private key (used to generate API credentials on first run; can be removed after generation)
|
|
POLYMARKET_PRIVATE_KEY=0xYourPrivateKey
|
|
|
|
# Polymarket proxy wallet address - note: this is NOT the deposit address!
|
|
# How to get it: log in to polymarket.com → top-right avatar → Settings → Wallet → copy "Proxy Wallet" (also called Funder Address)
|
|
# This is the Gnosis Safe the platform auto-deploys for your EOA, mapping one-to-one with the private key; a wrong value triggers invalid signature
|
|
POLYMARKET_PROXY_ADDRESS=0xYourProxyWalletAddress
|
|
|
|
# HTTP service starting port (auto +1 increment if taken, up to 10 times)
|
|
# When running multiple instances, change to 3556 / 3656 etc.
|
|
PORT=3456
|
|
|
|
# Verbose raw log switch (trade-raw-YYYY-MM-DD.log): off by default to save disk
|
|
# Set to true and restart when you need to debug raw data such as orders/signatures/polling
|
|
RAW_LOG_ENABLED=false
|