Files
aitbc/website/agent/islands.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

56 lines
1.3 KiB
JSON

{
"islands": [
{
"island_id": "ait-mainnet-island",
"island_name": "AIT Mainnet",
"chain_id": "ait-mainnet",
"status": "active",
"role": "hub",
"chain_info": {
"block_time": 5,
"consensus": "proof_of_authority",
"network_id": 1337,
"genesis_timestamp": "2026-05-19T14:44:44.174290"
},
"endpoints": {
"rpc": [
{
"url": "http://aitbc:8006",
"node_id": "aitbc",
"role": "hub"
},
{
"url": "http://aitbc1:8006",
"node_id": "aitbc1",
"role": "follower"
}
],
"p2p": [
{
"address": "aitbc:7070",
"node_id": "aitbc"
},
{
"address": "aitbc1:7070",
"node_id": "aitbc1"
}
]
},
"this_node": {
"node_id": "aitbc",
"role": "hub",
"is_hub": true,
"block_production_chains": ["ait-mainnet"],
"enable_block_production": true
}
}
],
"_meta": {
"generated_at": "2026-05-19T15:50:00Z",
"format_version": "1.0",
"total_islands": 1,
"active_islands": 1,
"note": "This endpoint only shows islands where this node (aitbc) is the HUB"
}
}