Developers

Build on KXCO Armature. Reference docs, JSON-RPC methods, the explorer's REST API, and integration patterns.

Chain config

Network
KXCO Armature
Chain ID
1111
Currency
ARMR
Consensus
QBFT PoA
Block time
~5s
Finality
Instant

Endpoints

HTTP RPChttps://chain.kxco.ai/rpc
WebSocketwss://chain.kxco.ai/rpc
REST APIhttps://chain.kxco.ai/api
Explorerhttps://chain.kxco.ai

Reference

Connect in 60 seconds

# Verify you can reach the network
curl -s -X POST https://chain.kxco.ai/rpc \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","method":"eth_chainId","params":[],"id":1}'
# → {"jsonrpc":"2.0","id":1,"result":"0x457"}   (0x457 = 1111)

# Latest block
curl -s https://chain.kxco.ai/api/stats
# → {"blockNumber":106500,"avgBlockTime":"5.0"}

Only the observer node is publicly reachable. Validator RPC ports are restricted to the internal network. Read-only methods work for everyone; writes require a funded account on a permissioned chain.