feat: implement AITBC mesh network deployment infrastructure
✅ 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
This commit is contained in:
26
config/economics_test.json
Normal file
26
config/economics_test.json
Normal file
@@ -0,0 +1,26 @@
|
||||
{
|
||||
"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
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user