Calix Chain

Network Config

Connection parameters for integrating your application with Calix Mainnet and Testnet.

Mainnet

ParameterValue
Network NameCalix Chain
Chain ID999 (0x3E7)
Native TokenCLX ยท 18 decimals
JSON-RPChttps://calixchain.io/rpc
WebSocketwss://calixchain.io/rpc/ws
Block Explorerhttps://calixchain.io/scan

Testnet

ParameterValue
Network NameCalix Testnet
Chain ID9999 (0x270F)
Native TokentCLX
JSON-RPChttps://rpc-test.calixchain.io
Block Explorerhttps://scan-test.calixchain.io
Faucethttps://faucet.calixchain.io

Add network via code

await window.ethereum.request({
  method: "wallet_addEthereumChain",
  params: [{
    chainId: "0x3E7",
    chainName: "Calix Chain",
    nativeCurrency: {
      name: "CLX",
      symbol: "CLX",
      decimals: 18
    },
    rpcUrls: ["https://calixchain.io/rpc"],
    blockExplorerUrls: ["https://calixchain.io/scan"],
  }],
});

Check connection

curl -X POST https://calixchain.io/rpc \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","method":"eth_blockNumber","params":[],"id":1}'
โ„น๏ธ
JSON-RPC and WebSocket both run over HTTPS/WSS (port 443, Let's Encrypt). No additional client-side firewall configuration required.