-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy path.env.template
More file actions
36 lines (30 loc) · 1.37 KB
/
.env.template
File metadata and controls
36 lines (30 loc) · 1.37 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# BlockRun Configuration (Required for AI analysis)
# Your Base chain wallet private key - used for signing payments
BASE_CHAIN_WALLET_KEY=0x...your_private_key_here
BLOCKRUN_WALLET_KEY=0x...your_private_key_here
# Flask app settings
FLASK_SECRET_KEY=your-secret-key-here
# Dashboard Login (Basic Auth)
ADMIN_USER=admin
ADMIN_PASS=your_secure_password_here
# Polymarket Trading (Required for placing bets)
# Signer: Your EOA wallet private key (exports from MetaMask/WalletConnect)
# Proxy: Your Gnosis Safe proxy wallet from Polymarket Settings page
POLYGON_WALLET_PRIVATE_KEY=0x...your_private_key_here
POLYMARKET_PROXY_WALLET=0x...your_proxy_wallet_address_here
# Trading settings (Kelly Criterion)
INITIAL_BANKROLL=100
MAX_BET_PERCENTAGE=0.05
MIN_EDGE_PERCENTAGE=0.15
# Polymarket API Credentials (Optional but recommended for production)
# If omitted, agent will try to derive them automatically
# To generate: run the credential generation script in README
POLYMARKET_API_KEY=
POLYMARKET_API_SECRET=
POLYMARKET_PASSPHRASE=
# Google Cloud Storage (Optional - for persistent data across deployments)
# Set to 'true' to enable GCS storage, 'false' to use local /tmp storage
# When disabled, data will be lost on redeployments (Cloud Run, containers)
# See README.md "Persistent Storage (Optional)" section for setup instructions
USE_GCS_STORAGE=false
GCS_BUCKET_NAME=your-bucket-name-here