Some checks failed
Deploy to Phoenix / deploy (push) Has been cancelled
- ADD_CHAIN138_TO_LEDGER_LIVE: Ledger form done; public code review repo bis-innovations/LedgerLive; init/push commands - CONTRACT_DEPLOYMENT_RUNBOOK: Chain 138 gas price 1 gwei, 36-addr check, TransactionMirror workaround - CONTRACT_*: AddressMapper, MirrorManager deployed 2026-02-12; 36-address on-chain check - NEXT_STEPS_FOR_YOU: Ledger done; steps completable now (no LAN); run-completable-tasks-from-anywhere - MASTER_INDEX, OPERATOR_OPTIONAL, SMART_CONTRACTS_INVENTORY_SIMPLE: updates - LEDGER_BLOCKCHAIN_INTEGRATION_COMPLETE: bis-innovations/LedgerLive reference Co-authored-by: Cursor <cursoragent@cursor.com>
47 lines
1.3 KiB
Plaintext
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
|