Files
aitbc/website/agent/chains.json
aitbc 001f1bc9d9
All checks were successful
Cross-Node Transaction Testing / transaction-test (push) Successful in 2s
Deploy to Testnet / deploy-testnet (push) Successful in 1m14s
Multi-Node Stress Testing / stress-test (push) Successful in 3s
refactor: remove testnet references from agent discovery endpoints - hub node only shows mainnet
- Removed ait-testnet from chains.json, discovery.json, and islands.json
- Deleted /agent/join/ait-testnet.json configuration guide
- Updated metadata counts from 2 to 1 active chain/island
- Added notes clarifying this node (aitbc) is HUB for mainnet only
- Updated index.html title and description to reflect mainnet hub role
- Removed testnet join section from homepage, kept only mainnet join guide
- Changed "Multi-island architecture" to "Federated multi-node architecture"
2026-05-19 18:29:58 +02:00

43 lines
1.1 KiB
JSON

{
"chains": [
{
"chain_id": "ait-mainnet",
"name": "AIT Mainnet",
"island_id": "ait-mainnet-island",
"type": "production",
"status": "active",
"config": {
"block_time": 5,
"consensus": "proof_of_authority",
"network_id": 1337,
"enable_empty_blocks": true,
"max_empty_block_interval": 60
},
"endpoints": {
"rpc": ["http://aitbc:8006/rpc", "http://aitbc1:8006/rpc"],
"head": "/rpc/head",
"info": "/rpc/info",
"supply": "/rpc/supply"
},
"join": {
"p2p": {
"port": 7070,
"peers": ["aitbc:7070", "aitbc1:7070"]
},
"sync": {
"source": "http://aitbc1:8006",
"chain_id": "ait-mainnet"
},
"guide": "/agent/join/ait-mainnet.json"
}
}
],
"_meta": {
"generated_at": "2026-05-19T15:50:00Z",
"format_version": "1.0",
"total_chains": 1,
"active_chains": 1,
"note": "This endpoint only shows chains where this node (aitbc) is the HUB"
}
}