Some checks failed
Cross-Node Transaction Testing / transaction-test (push) Successful in 3s
Deploy to Testnet / deploy-testnet (push) Successful in 1m18s
Multi-Node Stress Testing / stress-test (push) Has been cancelled
Documentation Validation / validate-docs (push) Failing after 12s
Documentation Validation / validate-policies-strict (push) Successful in 5s
- Deleted extensions/ directory containing Chrome and Firefox wallet implementations - Removed aitbc-wallet and aitbc-wallet-firefox subdirectories with all source files - Removed Firefox .xpi package (v1.0.5) - Deleted extension documentation (README.md files, API reference, architecture diagrams) - Removed manifest files, background scripts, content scripts, injected scripts, and popup UI code - Cleaned up wallet API implementation (connect
71 lines
2.0 KiB
JSON
71 lines
2.0 KiB
JSON
{
|
|
"network": {
|
|
"name": "AITBC",
|
|
"version": "1.0.0",
|
|
"description": "AI-powered blockchain platform with multi-island architecture",
|
|
"apis": {
|
|
"rpc": {
|
|
"url": "http://localhost:8006/rpc",
|
|
"documentation": "/agent/openapi.json",
|
|
"version": "1.0"
|
|
},
|
|
"agent": {
|
|
"discovery": "/agent/discovery.json",
|
|
"islands": "/agent/islands.json",
|
|
"chains": "/agent/chains.json",
|
|
"health": "/agent/health",
|
|
"join": "/agent/join/"
|
|
}
|
|
},
|
|
"islands": [
|
|
{
|
|
"island_id": "ait-mainnet-island",
|
|
"name": "AIT Mainnet",
|
|
"chain_id": "ait-mainnet",
|
|
"status": "active",
|
|
"description": "Primary production chain for AITBC",
|
|
"endpoints": {
|
|
"rpc": ["http://aitbc:8006", "http://aitbc1:8006"],
|
|
"p2p": ["aitbc:7070", "aitbc1:7070"]
|
|
},
|
|
"chain_info": {
|
|
"block_time": 5,
|
|
"consensus": "proof_of_authority",
|
|
"network_id": 1337
|
|
},
|
|
"join_guide": "/agent/join/ait-mainnet.json"
|
|
},
|
|
{
|
|
"island_id": "ait-testnet-island",
|
|
"name": "AIT Testnet",
|
|
"chain_id": "ait-testnet",
|
|
"status": "active",
|
|
"description": "Test network for development and experimentation",
|
|
"endpoints": {
|
|
"rpc": ["http://aitbc:8006", "http://aitbc1:8006"],
|
|
"p2p": ["aitbc:7070", "aitbc1:7070"]
|
|
},
|
|
"chain_info": {
|
|
"block_time": 5,
|
|
"consensus": "proof_of_authority",
|
|
"network_id": 1337
|
|
},
|
|
"join_guide": "/agent/join/ait-testnet.json"
|
|
}
|
|
]
|
|
},
|
|
"this_node": {
|
|
"node_id": "aitbc",
|
|
"role": "hub",
|
|
"is_hub": true,
|
|
"block_production": true,
|
|
"chains": ["ait-mainnet"],
|
|
"island_memberships": ["ait-mainnet-island"],
|
|
"discovery_url": "http://aitbc:8006/agent/discovery.json"
|
|
},
|
|
"_meta": {
|
|
"generated_at": "2026-05-19T15:50:00Z",
|
|
"format_version": "1.0"
|
|
}
|
|
}
|