Active development · testnet
Back to Wiki

Wiki · Chain Details

Chain Details

Add SPACE OS Testnet to your EVM wallet — chain ID, RPC, gas, and the legacy-tx requirement.

Chain Details

Add SPACE OS Testnet to your EVM wallet.

Wallet configuration

Setting Value
Network Name SPACE OS Testnet
Chain ID 800000
Currency Symbol SPACE
RPC URL https://testnet.evm.spaceos.com
Block Explorer https://testnet.evm-explorer.spaceos.com
Block Time ~0.5s
Gas Price 150 gwei (fixed, legacy txs only)

Notes

  • The chain uses legacy transactions only — EIP-1559 (maxFeePerGas / maxPriorityFeePerGas) is not supported. Set a fixed gasPrice of 150 gwei when constructing transactions.
  • Block time is sub-second; transactions confirm quickly.
  • Chain ID 800000 was selected to be unique across major EVM networks.

Add via wallet UI

In MetaMask:

  1. Open Settings → Networks → Add a network → Add a network manually
  2. Paste the values from the table above
  3. Save and switch to "SPACE OS Testnet"

In code (ethers v6)

import { JsonRpcProvider, Wallet } from "ethers";

const provider = new JsonRpcProvider("https://testnet.evm.spaceos.com");
const wallet = new Wallet(privateKey, provider);

const tx = await wallet.sendTransaction({
  to: "0x...",
  value: 0n,
  gasPrice: 150_000_000_000n, // 150 gwei, legacy
});