Files
proxmox/backups/configs/proxmox-configs-20260203_195622/config/production/.env.production.example

47 lines
1.3 KiB
Plaintext
Raw Normal View History

# 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