Skip to content

Instantly share code, notes, and snippets.

@decentration
Created February 13, 2022 11:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save decentration/fceeafb66c8705fd6127012d9d35dbb0 to your computer and use it in GitHub Desktop.
Save decentration/fceeafb66c8705fd6127012d9d35dbb0 to your computer and use it in GitHub Desktop.
Public RPC (full node) Command
./target/release/polkadot \ (replace polkadot with the name of your repo)
--validator \ - base-path /tmp/relay/MyVal1 \ (specify your db path)
--chain ./specs/<INSERT-CHAIN-SPEC.JSON> \
--port 30333 \
--ws-port 9944 \
--rpc-port 9933 \
--unsafe-ws-external \
--rpc-methods=Unsafe \
--rpc-external=True \
--rpc-cors all \
--name MyFullNode01 \
--bootnodes /ip4/<INSERT A BOOTNODE TO LAUNCH VALIDATOR> \
--telemetry-url 'wss://telemetry.polkadot.io/submit/ 0' \
--node-key <INSERT-KEY> (optional)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment