Skip to main content

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

ParameterValue
Network nameOXN Testnet
Chain ID (decimal)186
Chain ID (hex)0xba
Currency symbolTBLUAI
Decimals18

Endpoints

ServiceURL
JSON-RPC (HTTPS)https://rpc.bout.network
Block explorerexplorer.bout.network
Web walletwallet.bout.network
Faucetfaucet.bout.network

Consensus and finality

PropertyValue
Consensus algorithmByzantine Fault Tolerant
Block timeA few seconds
FinalitySingle-slot, deterministic
ReorgsNone (under honest majority)

EVM configuration

PropertyValue
Target EVM versionparis
PUSH0 supportNot supported — compile with evmVersion: "paris"
Standard precompiles0x010x09 supported; 0x0a (KZG) not supported
Fee modelLegacy gasPrice (no EIP-1559)
eth_estimateGasSet gasLimit explicitly (recommended)

Address formats

FormatPurpose
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