Skip to content

Run a separate validator client

Warning

Some features of the validator client, such as the metrics server, are currently in BETA and details may change in response to community feedback. Please consult the --help screen for more details.

By default, Nimbus integrates the validator client into the main beacon node process — this is a simple, safe and efficient way to run a validator.

Advanced users may wish to run validators in a separate process, allowing more flexible deployment strategies. The Nimbus beacon node supports both its own and third-party validator clients via the built-in REST API.

Warning

So far, all slashings with known causes have been linked to overly complex setups involving separation between beacon node and validator client! Only use this setup if you've taken steps to mitigate the increased risk.

Setup

To run a separate validator client, you must first make sure that your beacon node has its REST API enabled: start it with the --rest option.

Next, choose a data directory for the validator client and import the keys there:

build/nimbus_beacon_node deposits import \
  --data-dir:build/data/vc_shared_holesky_0 "<YOUR VALIDATOR KEYS DIRECTORY>"

Warning

Do not use the same data directory for beacon node and validator client! They will both try to load the same keys which may result in slashing!

Warning

If you are migrating your keys from the beacon node to the validator client, simply move the secrets and validators folders in the beacon node data directory to the data directory of the validator client

With the keys imported, you are ready to start validator client:

build/nimbus_validator_client \
  --data-dir:build/data/vc_shared_holesky_0

Options

See the validator client options page for more information about beacon node roles, redundant setups and sentry nodes!