Testnet Parameters
Reference table for the OXN Testnet. If you're setting up a wallet or an SDK integration, everything you need is here.
Chain identifiers
| Parameter | Value |
|---|---|
| Network name | OXN Testnet |
| Chain ID (decimal) | 186 |
| Chain ID (hex) | 0xba |
| Currency symbol | TBLUAI |
| Decimals | 18 |
Endpoints
| Service | URL |
|---|---|
| JSON-RPC (HTTPS) | https://rpc.bout.network |
| Block explorer | explorer.bout.network |
| Web wallet | wallet.bout.network |
| Faucet | faucet.bout.network |
Consensus and finality
| Property | Value |
|---|---|
| Consensus algorithm | Byzantine Fault Tolerant |
| Block time | A few seconds |
| Finality | Single-slot, deterministic |
| Reorgs | None (under honest majority) |
EVM configuration
| Property | Value |
|---|---|
| Target EVM version | paris |
PUSH0 support | Not supported — compile with evmVersion: "paris" |
| Standard precompiles | 0x01–0x09 supported; 0x0a (KZG) not supported |
| Fee model | Legacy gasPrice (no EIP-1559) |
eth_estimateGas | Set gasLimit explicitly (recommended) |
Address formats
| Format | Purpose |
|---|---|
0x… (EVM) | Wallets, MetaMask, EVM contracts, SDKs |
oxn1… (native) | Consensus layer, validator staking (mainnet) |
See Accounts and Addresses for how they relate.
MetaMask JSON
For programmatic wallet-add flows or copy-paste convenience:
{
"chainId": "0xba",
"chainName": "OXN Testnet",
"rpcUrls": ["https://rpc.bout.network"],
"nativeCurrency": {
"name": "TBLUAI",
"symbol": "TBLUAI",
"decimals": 18
},
"blockExplorerUrls": ["https://explorer.bout.network"]
}
Reset policy
Testnet may be reset during development phases. When a reset is planned, an announcement is posted via the Support channels. Reset behavior:
- All account balances are cleared.
- Deployed contract addresses become invalid.
- Chain ID and endpoint URLs remain the same across resets.
Design your test workflows around the possibility of a reset: keep deployment scripts idempotent, and don't hard-code contract addresses across environments.
Next steps
- Set Up Your Wallet
- Public RPC Endpoints — rate limits and availability
- Currency & Denominations