Developers

JSON-RPC

Live

Nexis Chain speaks the standard Ethereum JSON-RPC interface — point any viem/ethers/web3.js client, or a wallet, at the endpoint below.

Network parameters

RPC URL
https://rpc.nexischain.com
Chain ID
5567 (0x15bf)
Network name
Nexis Chain
Currency
NXC
Wallet status
No wallet detected

Install a browser wallet (MetaMask or similar) to add this network with one click.

Try it with curl

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.

Common methods

MethodParamsDescription
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.