forked from ent0n29/aware
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
60 lines (50 loc) · 2.43 KB
/
.env.example
File metadata and controls
60 lines (50 loc) · 2.43 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
# ============================================================================
# Polybot Configuration
# ============================================================================
# Copy this file to .env and fill in your values
# NEVER commit .env to version control!
# ============================================================================
# ----------------------------------------------------------------------------
# Polymarket Authentication (Required for live trading)
# ----------------------------------------------------------------------------
# Your Polymarket wallet private key (without 0x prefix)
POLYMARKET_PRIVATE_KEY=
# Signature type (0 = EOA, 1 = Poly Proxy, 2 = Gnosis Safe)
POLYMARKET_SIGNATURE_TYPE=0
# Funder address (optional, for proxy wallets)
POLYMARKET_FUNDER_ADDRESS=
# API credentials (generated from Polymarket)
POLYMARKET_API_KEY=your_polymarket_api_key_here
POLYMARKET_API_SECRET=your_polymarket_api_secret_here
POLYMARKET_API_PASSPHRASE=your_polymarket_api_passphrase_here
POLYMARKET_API_NONCE=0
# ----------------------------------------------------------------------------
# Strategy Research - Target User (for reverse engineering)
# ----------------------------------------------------------------------------
# The Polymarket username to analyze and replicate
POLYMARKET_TARGET_USER=
# ----------------------------------------------------------------------------
# Analytics Database (ClickHouse)
# ----------------------------------------------------------------------------
ANALYTICS_DB_URL=jdbc:clickhouse://localhost:8123/polybot
CLICKHOUSE_HOST=localhost
CLICKHOUSE_PORT=8123
CLICKHOUSE_DATABASE=polybot
CLICKHOUSE_USER=default
CLICKHOUSE_PASSWORD=
# ----------------------------------------------------------------------------
# Monitoring (Optional)
# ----------------------------------------------------------------------------
# Slack webhook for alerts
SLACK_WEBHOOK_URL=
# Grafana admin credentials
GRAFANA_ADMIN_USER=admin
GRAFANA_ADMIN_PASSWORD=replace_with_strong_password
# ----------------------------------------------------------------------------
# Blockchain RPC
# ----------------------------------------------------------------------------
POLYGON_RPC_URL=https://polygon-rpc.com
# ----------------------------------------------------------------------------
# Kafka (for event streaming)
# ----------------------------------------------------------------------------
KAFKA_BOOTSTRAP_SERVERS=localhost:9092