-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy path.env.example
More file actions
44 lines (36 loc) · 1.78 KB
/
.env.example
File metadata and controls
44 lines (36 loc) · 1.78 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
# StellarMind — Environment Configuration
# Run `npm run setup` to auto-generate wallets, or fill in manually.
# ─── Stellar Testnet Keypairs ───────────────────────────
# Generate at https://lab.stellar.org/account/create
# Fund at https://lab.stellar.org/account/fund
# Server wallet — receives payments for agent services
SERVER_STELLAR_ADDRESS=G...
SERVER_STELLAR_SECRET=S...
# Orchestrator agent wallet — pays for services on behalf of users
ORCHESTRATOR_STELLAR_ADDRESS=G...
ORCHESTRATOR_STELLAR_SECRET=S...
# Buyer agent wallet — end-user demo wallet
BUYER_STELLAR_ADDRESS=G...
BUYER_STELLAR_SECRET=S...
# ─── Anthropic Claude API ──────────────────────────────
# Get your key from https://console.anthropic.com
ANTHROPIC_API_KEY=sk-ant-...
# Anthropic request timeout in milliseconds
ANTHROPIC_REQUEST_TIMEOUT_MS=20000
# Max retries for transient Anthropic errors
ANTHROPIC_MAX_RETRIES=2
# Base retry delay in milliseconds (uses exponential backoff)
ANTHROPIC_RETRY_BASE_DELAY_MS=500
# ─── Network Configuration ─────────────────────────────
NETWORK=stellar:testnet
FACILITATOR_URL=https://www.x402.org/facilitator
STELLAR_RPC_URL=https://soroban-testnet.stellar.org
# ─── Server ────────────────────────────────────────────
PORT=3001
# Internal base URL used by the orchestrator when it calls premium endpoints.
# Leave unset for one-command local dev.
# Examples:
# INTERNAL_BASE_URL=http://localhost:3001
# INTERNAL_BASE_URL=http://server:3001
# INTERNAL_BASE_URL=https://stellarmind.example.com
INTERNAL_BASE_URL=