forked from Kevin737866/stellar-defi-toolkit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
63 lines (50 loc) · 1.46 KB
/
Copy path.env.example
File metadata and controls
63 lines (50 loc) · 1.46 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
61
62
63
# Stellar DeFi Toolkit Configuration
# Stellar Network Configuration
STELLAR_NETWORK=testnet
STELLAR_HORIZON_URL=https://horizon-testnet.stellar.org
STELLAR_SECRET_KEY=YOUR_SECRET_KEY_HERE
# Soroban Configuration
SOROBAN_RPC_URL=https://soroban-testnet.stellar.org
SOROBAN_NETWORK_PASSPHRAPH=Test SDF Network ; September 2015
# Contract Configuration
TOKEN_CONTRACT_ID=YOUR_TOKEN_CONTRACT_ID
LIQUIDITY_POOL_CONTRACT_ID=YOUR_POOL_CONTRACT_ID
STAKING_CONTRACT_ID=YOUR_STAKING_CONTRACT_ID
GOVERNANCE_CONTRACT_ID=YOUR_GOVERNANCE_CONTRACT_ID
# Fee Configuration
DEFAULT_FEE_BASIS_POINTS=30
MAX_SLIPPAGE_BASIS_POINTS=500
TRANSACTION_TIMEOUT_SECONDS=300
# Logging Configuration
RUST_LOG=info
LOG_LEVEL=info
# API Configuration
API_HOST=127.0.0.1
API_PORT=8080
API_RATE_LIMIT=100
# Database Configuration (if needed)
DATABASE_URL=sqlite:./stellar_defi.db
# Security Configuration
JWT_SECRET=YOUR_JWT_SECRET_HERE
API_KEY=YOUR_API_KEY_HERE
# Monitoring Configuration
ENABLE_METRICS=true
METRICS_PORT=9090
HEALTH_CHECK_INTERVAL=30
# Development Configuration
DEV_MODE=true
MOCK_CONTRACTS=true
SKIP_SIGNATURE_VERIFICATION=false
# External Services
COINGECKO_API_KEY=YOUR_COINGECKO_API_KEY
DISCORD_WEBHOOK_URL=YOUR_DISCORD_WEBHOOK_URL
SLACK_WEBHOOK_URL=YOUR_SLACK_WEBHOOK_URL
# Feature Flags
ENABLE_GOVERNANCE=true
ENABLE_CROSS_CHAIN=true
ENABLE_YIELD_FARMING=true
ENABLE_ANALYTICS=true
# Performance Configuration
MAX_CONCURRENT_REQUESTS=10
REQUEST_TIMEOUT_SECONDS=30
CONNECTION_POOL_SIZE=5