Status Page
Live status of OXN infrastructure — the RPC endpoint, block explorer, faucet, and web wallet.
Live status
Status page: coming soon — a public uptime dashboard will be published prior to mainnet.
In the interim, quick health checks:
- RPC: rpc.bout.network — should respond to JSON-RPC POST requests.
- Explorer: explorer.bout.network — should load in a browser.
- Faucet: faucet.bout.network — should load and allow requests.
- Web Wallet: wallet.bout.network — should load and connect.
Manual chain health check
# Chain ID reachable?
curl -s -X POST https://rpc.bout.network \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","method":"eth_chainId","id":1}'
# Expected: {"jsonrpc":"2.0","id":1,"result":"0xba"}
# Latest block advancing?
watch -n 5 'curl -s -X POST https://rpc.bout.network \
-H "Content-Type: application/json" \
-d "{\"jsonrpc\":\"2.0\",\"method\":\"eth_blockNumber\",\"id\":1}" | jq .result'
Reporting incidents
If you observe a service issue:
- Check whether it's local to you (try from another network).
- If it's real, report via the Support channels.
- Include: what you observed, when, and the request you made.
Incident post-mortems
When incidents happen, post-mortems will be published. Archive is TBD; announcements go through the Support channels.