Skip to main content

Run a New RPC Node

Prepare and Run

To run a new RPC node (refer to this page for node types) the specific command-line arguments you should set are the following:

NameDescriptionValue
--rpc-portSpecify JSON-RPC server TCP port.Any number, but make sure the port is not already in use on your machine.
--rpc-externalListen to all RPC interfaces (default: local).
Not all RPC methods are safe to be exposed publicly.
Use an RPC proxy server to filter out dangerous methods. More details: https://docs.substrate.io/main-docs/build/custom-rpc/#public-rpcs.
Use --unsafe-rpc-external to suppress the warning if you understand the risks.
No value must be provided.
--rpc-corsSpecify browser origins allowed to access the HTTP and WS RPC servers.
A comma-separated list of origins (protocol://domain or special null value). Value of all will disable origin validation. Default is to allow localhost and https://polkadot.js.org origins. When running in --dev mode the default is to allow all origins.
all for allowing PolkadotJS to reach the node running within the container.
--rpc-methodsRPC methods to expose.
[default: auto]
Possible values:
- auto: Expose every RPC method only when RPC is listening on localhost, otherwise serve only safe RPC methods
- safe: Allow only a safe subset of RPC methods
- unsafe: Expose every RPC method (even potentially unsafe ones)
safe if your machine externally exposes RPC port, otherwise unsafe.
--pruningSpecifies the maximum number of block states to keep or archive to keep all block states. If the node is running as a validator, the default is to keep all block states. If the node does not run as a validator, only state for the last 256 blocks is kept.archive if you want to maintain a full copy of the blockchain, any number if you want to keep only a specific number of recent blocks.

You can then start with:

target/production/nh-node --name MyZkVerifyRpcNode --base-path /home/your_user/rpc_node_data --chain test --port 30555 --rpc-port 9944 --rpc-external --rpc-cors all --rpc-methods safe --pruning archive
note

You can change the values of the above args based on your needs.

You can check from the logs printed out in the console that your RPC node is up and running (e.g. it keeps updating the chain tip, it is connected to other peers, etc.).

Refer to this section for instructions on how to explore and interact with your RPC node.