Nexis Chain speaks the standard Ethereum JSON-RPC interface — point any viem/ethers/web3.js client, or a wallet, at the endpoint below.
https://rpc.nexischain.comInstall a browser wallet (MetaMask or similar) to add this network with one click.
curl https://rpc.nexischain.com \
-X POST -H "Content-Type: application/json" \
-d '{
"jsonrpc": "2.0",
"id": 1,
"method": "eth_blockNumber",
"params": []
}'Response: { "jsonrpc": "2.0", "id": 1, "result": "0x..." } — a hex-encoded block number.
| Method | Params | Description |
|---|---|---|
eth_chainId | [] | Chain ID (returns the hex value below). |
eth_blockNumber | [] | Latest block number. |
eth_getBalance | ["0x…", "latest"] | Native NXC balance of an address. |
eth_gasPrice | [] | Current network gas price. |
eth_getTransactionCount | ["0x…", "latest"] | Nonce for an address. |
eth_call | [{ to, data }, "latest"] | Read-only contract call. |
eth_sendRawTransaction | ["0x…signed tx"] | Broadcast a signed transaction. |
eth_getTransactionReceipt | ["0x…hash"] | Receipt for a mined transaction. |
txpool_status | [] | Pending/queued mempool counts (powers this explorer's live ticker). |
Full method coverage follows the standard Ethereum execution-client JSON-RPC spec.