forked from StellaBridge/Bridge-Watch
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
46 lines (36 loc) · 947 Bytes
/
.env.example
File metadata and controls
46 lines (36 loc) · 947 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
42
43
44
45
46
# ===========================================
# Stellar Bridge Watch - Environment Variables
# ===========================================
# Application
NODE_ENV=development
PORT=3001
# PostgreSQL + TimescaleDB
POSTGRES_HOST=localhost
POSTGRES_PORT=5432
POSTGRES_DB=bridge_watch
POSTGRES_USER=bridge_watch
POSTGRES_PASSWORD=your_password_here
# Redis
REDIS_HOST=localhost
REDIS_PORT=6379
REDIS_PASSWORD=
# Stellar Network
STELLAR_NETWORK=testnet
STELLAR_HORIZON_URL=https://horizon-testnet.stellar.org
SOROBAN_RPC_URL=https://soroban-testnet.stellar.org
# Ethereum RPC (for bridge contract verification)
ETHEREUM_RPC_URL=https://mainnet.infura.io/v3/YOUR_INFURA_KEY
# External APIs
CIRCLE_API_KEY=
COINBASE_API_KEY=
COINBASE_API_SECRET=
# WebSocket
WS_PORT=3002
# Logging
LOG_LEVEL=info
# Rate Limiting
RATE_LIMIT_MAX=100
RATE_LIMIT_WINDOW_MS=60000
# Alert Thresholds
PRICE_DEVIATION_THRESHOLD=0.02
BRIDGE_SUPPLY_MISMATCH_THRESHOLD=0.01