Files
proxmox/config/production/.env.production.template
defiQUG cb47cce074 Complete markdown files cleanup and organization
- Organized 252 files across project
- Root directory: 187 → 2 files (98.9% reduction)
- Moved configuration guides to docs/04-configuration/
- Moved troubleshooting guides to docs/09-troubleshooting/
- Moved quick start guides to docs/01-getting-started/
- Moved reports to reports/ directory
- Archived temporary files
- Generated comprehensive reports and documentation
- Created maintenance scripts and guides

All files organized according to established standards.
2026-01-06 01:46:25 -08:00

47 lines
1.3 KiB
Plaintext

# Production Environment Configuration
# Copy this file to .env.production and fill in values
# Network Configuration
CHAIN138_RPC=https://rpc.chain138.example.com
ETHEREUM_MAINNET_RPC=https://eth-mainnet.g.alchemy.com/v2/YOUR_KEY
RPC_URL=${ETHEREUM_MAINNET_RPC}
# Contract Addresses (ChainID 138)
LOCKBOX138_ADDRESS=0x0000000000000000000000000000000000000000
# Contract Addresses (Ethereum Mainnet)
INBOX_ETH_ADDRESS=0x0000000000000000000000000000000000000000
BOND_MANAGER_ADDRESS=0x0000000000000000000000000000000000000000
CHALLENGE_MANAGER_ADDRESS=0x0000000000000000000000000000000000000000
LIQUIDITY_POOL_ADDRESS=0x0000000000000000000000000000000000000000
SWAP_ROUTER_ADDRESS=0x0000000000000000000000000000000000000000
BRIDGE_SWAP_COORDINATOR_ADDRESS=0x0000000000000000000000000000000000000000
# Multisig
MULTISIG_ADDRESS=0x0000000000000000000000000000000000000000
# Monitoring
PROMETHEUS_ENABLED=true
PROMETHEUS_PORT=9090
GRAFANA_ENABLED=true
GRAFANA_PORT=3000
# Alerting
ALERT_EMAIL=alerts@example.com
SLACK_WEBHOOK=https://hooks.slack.com/services/YOUR/WEBHOOK/URL
PAGERDUTY_ENABLED=false
PAGERDUTY_KEY=your_pagerduty_key
# Rate Limiting
MIN_DEPOSIT_AMOUNT=1000000000000000
COOLDOWN_PERIOD=60
MAX_CLAIMS_PER_HOUR=100
# Relayer Fees
RELAYER_FEE_BPS=0
# Security
PRIVATE_KEY=your_private_key_here
MULTISIG_THRESHOLD=2
MULTISIG_SIGNERS=signer1,signer2,signer3