Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ __pycache__/
venv/

api_trading.env
api_trading.env.example
storage.env
validator_state_*.json

sims/
5 changes: 5 additions & 0 deletions api_trading.env.example
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
# Default credential set (no prefix)
EOA_WALLET_ADDRESS=
# Use either EOA_WALLET_PK (private key) OR EOA_WALLET_MNEMONIC (12/24 word phrase)
# If both are provided, EOA_WALLET_PK takes precedence
EOA_WALLET_PK=
# EOA_WALLET_MNEMONIC=
# Proxy wallet address generated by Polymarket
EOA_PROXY_FUNDER=

Expand All @@ -12,6 +15,7 @@ POLYMARKET_API_PASSPHRASE=
# Example: WALLET1_ prefix creates a credential set named "WALLET1". Can be any prefix. i.e. WONE_, WTWO, THISISCOOL_, THISISALSOCOOL_, etc.
# WALLET1_EOA_WALLET_ADDRESS=
# WALLET1_EOA_WALLET_PK=
# WALLET1_EOA_WALLET_MNEMONIC=
# WALLET1_EOA_PROXY_FUNDER=
# WALLET1_POLYMARKET_API_KEY=
# WALLET1_POLYMARKET_API_SECRET=
Expand All @@ -20,6 +24,7 @@ POLYMARKET_API_PASSPHRASE=
# Example: WALLET2_ prefix creates a credential set named "WALLET2". Can be any prefix. i.e. WONE_, WTWO, THISISCOOL_, THISISALSOCOOL_, etc.
# WALLET2_EOA_WALLET_ADDRESS=
# WALLET2_EOA_WALLET_PK=
# WALLET2_EOA_WALLET_MNEMONIC=
# WALLET2_EOA_PROXY_FUNDER=
# WALLET2_POLYMARKET_API_KEY=
# WALLET2_POLYMARKET_API_SECRET=
Expand Down
Loading