-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env.example
More file actions
41 lines (32 loc) · 1013 Bytes
/
Copy path.env.example
File metadata and controls
41 lines (32 loc) · 1013 Bytes
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
# VaultWatch Environment Variables
# Copy to .env and fill in your values
# Groq API (required)
GROQ_API_KEY=your_groq_api_key_here
# Casper Network
CASPER_NODE_URL=https://rpc.testnet.casperlabs.io/rpc
CASPER_CHAIN_NAME=casper-test
CASPER_ACCOUNT_SECRET_KEY=your_secret_key_hex_here
# Casper Sidecar SSE
CASPER_SIDECAR_URL=http://127.0.0.1:18888/events/main
# CSPR.cloud API
CSPR_CLOUD_API_URL=https://api.testnet.cspr.cloud
CSPR_CLOUD_API_KEY=your_cspr_cloud_key_here
# Deployed Contract Hashes (filled after deployment)
CONTRACT_AUDIT_TRAIL=
CONTRACT_RISK_ORACLE=
CONTRACT_SENTINEL_CREDIT=
CONTRACT_SENTINEL_REGISTRY=
CONTRACT_ALERT_LOG=
CONTRACT_AGENT_BEHAVIOR_INDEX=
CONTRACT_RISK_POLICY_MANAGER=
CONTRACT_SUBSCRIBER_VAULT=
# x402 Pay-per-query
X402_PAYMENT_AMOUNT=1000000 # 0.001 CSPR in motes
# OpenTelemetry (optional — stdout used if not set)
OTEL_EXPORTER_OTLP_ENDPOINT=
OTEL_SERVICE_NAME=vaultwatch
# API Server
API_HOST=0.0.0.0
API_PORT=8000
# Dashboard
VITE_API_URL=http://localhost:8000