Skip to main content

Start Here

Faucet

Get free testnet KRC to pay for gas. No sign-up required.

Explorer

Browse blocks, transactions, and accounts on StableNet.

Testnet at a Glance

Value
Chain ID8283
RPChttps://api.test.stablenet.network
Explorerexplorer.stablenet.network
Faucetfaucet.stablenet.network

Get Started in 3 Steps

1

Add Testnet to your wallet

Run this in your browser console to add StableNet Testnet to MetaMask:
await window.ethereum.request({
  method: "wallet_addEthereumChain",
  params: [{
    chainId: "0x205B",
    chainName: "StableNet Testnet",
    nativeCurrency: { name: "KRC", symbol: "KRC", decimals: 18 },
    rpcUrls: ["https://api.test.stablenet.network"],
    blockExplorerUrls: ["https://explorer.stablenet.network"],
  }],
});
2

Get testnet KRC from the Faucet

Visit faucet.stablenet.network, enter your wallet address, and receive testnet KRC.
StableNet requires a minimum gas tip of 27,600 Gwei. The Faucet sends enough KRC to cover many transactions.
3

Verify your connection

Confirm the RPC endpoint is live:
curl -X POST https://api.test.stablenet.network \
  -H "Content-Type: application/json" \
  --data '{"jsonrpc":"2.0","method":"eth_blockNumber","params":[],"id":1}'
You should receive a hex block number in the result field. Then check your balance on Explorer.

What’s Next

Network Information

Full network details — Chain IDs, RPC, system contract addresses.

API Reference

JSON-RPC methods with curl, ethers.js, and viem examples.

Explorer

Inspect your transactions and contracts on-chain.

Faucet

Top up your testnet KRC balance.