✅ Phase 0: Pre-implementation checklist completed - Environment configurations (dev/staging/production) - Directory structure setup (logs, backups, monitoring) - Virtual environment with dependencies ✅ Master deployment script created - Single command deployment with validation - Progress tracking and rollback capability - Health checks and deployment reporting ✅ Validation script created - Module import validation - Basic functionality testing - Configuration and script verification ✅ Implementation fixes - Fixed dataclass import in consensus keys - Fixed async function syntax in tests - Updated deployment script for virtual environment 🚀 Ready for deployment: ./scripts/deploy-mesh-network.sh dev
27 lines
688 B
JSON
27 lines
688 B
JSON
{
|
|
"staking": {
|
|
"min_stake_amount": 1000.0,
|
|
"unstaking_period": 21,
|
|
"max_delegators_per_validator": 100,
|
|
"commission_range": [0.01, 0.10]
|
|
},
|
|
"rewards": {
|
|
"base_reward_rate": 0.05,
|
|
"distribution_interval": 86400,
|
|
"min_reward_amount": 0.001,
|
|
"delegation_reward_split": 0.9
|
|
},
|
|
"gas": {
|
|
"base_gas_price": 0.001,
|
|
"max_gas_price": 0.1,
|
|
"min_gas_price": 0.0001,
|
|
"congestion_threshold": 0.8,
|
|
"price_adjustment_factor": 1.1
|
|
},
|
|
"security": {
|
|
"monitoring_interval": 60,
|
|
"detection_history_window": 3600,
|
|
"max_false_positive_rate": 0.05
|
|
}
|
|
}
|