Calix Chain

Quickstart

Add Calix to your wallet, get test tokens, and start exploring the chain in minutes.

1. Add Calix Mainnet to your wallet

Open MetaMask (or any EVM-compatible wallet) and add the network manually:

FieldValue
Network NameCalix Chain
RPC URLhttps://calixchain.io/rpc
Chain ID999 (0x3E7)
Currency SymbolCLX
Block Explorerhttps://calixchain.io/scan

2. Use the Testnet

For experimentation, use Calix Testnet — no real CLX required. Add it to your wallet and grab free tokens from the faucet.

FieldValue
Network NameCalix Testnet
RPC URLhttps://rpc-test.calixchain.io
Chain ID9999 (0x270F)
Currency SymboltCLX
Faucethttps://faucet.calixchain.io

3. Explore the chain

Browse blocks, transactions, tokens, and contract activity on Calix Scan — the native block explorer. No wallet required to read chain state.

4. Connect with ethers.js

Query the chain or build a dApp using any JSON-RPC library:

import { ethers } from "ethers";

const provider = new ethers.JsonRpcProvider("https://calixchain.io/rpc");
const blockNumber = await provider.getBlockNumber();
console.log("Latest block:", blockNumber);

Subscribe to new blocks over WebSocket:

const ws = new ethers.WebSocketProvider("wss://calixchain.io/rpc/ws");

ws.on("block", (blockNumber) => {
  console.log("New block:", blockNumber);
});

Next steps