Nodeset Hyperdrive

For existing Ethereum Mainnet node operators: Solo Stakers, Rocketpool, Lido CSM, SSV, Obol, Stakewise etc

Pre-requisites

  1. Go through the Nodeset on-boarding process. Apply under "I am a Node Operator" here.

  2. Install, configure, and sync an Ethereum mainnet full node. Refer to the ETH Docker or ETHPillar setup segments if you do not have this yet.

  3. Expose HTTP & Websocket ports on your execution client and the REST port on your consensus client. Note down all 3 port numbers. We will refer to them as PORT_1, PORT_2, and PORT_3

    1. ETHPillar example (WIP)

  4. Identify the private IP address of your node by running ip a | grep enp. You are looking for a number that looks like this: 192.168.xx.xx. Note down this number. We will refer to this as PRIVATE_IP_ADDRESS

Install dependencies

General updates, curl, git, docker.

sudo apt update -y && sudo apt upgrade -y
sudo apt install git curl -y
curl -fsSL https://get.docker.com -o get-docker.sh
sh get-docker.sh

Add your current user to the docker group, then restart your device to apply the change.

sudo usermod -aG docker $USER
sudo reboot 0

Installing Hyperdrive

Download the latest binary release of Hyperdrive into /usr/bin and make this binary file executable.

Install Hyperdrive.

Configuring Hyperdrive

Start the Hyperdrive service configuration Terminal UI (TUI).

Select from the TUI:

  1. Welcome: Next

  2. Network: Ethereum Mainnet

  3. Client Mode: Externally Managed

  4. Select your Execution Client

    1. HTTP URL: http://PRIVATE_IP_ADDRESS:PORT_1

    2. Websocket URL: http://PRIVATE_IP_ADDRESS:PORT_2

  5. Select your Consensus Client

    1. HTTP URL: http://PRIVATE_IP_ADDRESS:PORT_3

  6. Use Fallback Clients: No (unless you have one)

  7. Modules: Stakewise

  8. Metrics: Yes

  9. Mev-Boost Mode: Externally Managed

  10. Save and Exit

Editing your configurations

Running hyperdrive service config again will bring you to this menu.

(Take note of the navigation instructions on the bottom of the TUI)

Configuration Options

  1. Execution Client:

    1. Client Mode: Externally Managed

    2. Execution Client: Select from the dropdown menu according to your actual externally managed Execution Client used. Note: Erigon is not available.

    3. HTTP URL: http://PRIVATE_IP_ADDRESS:PORT_1

    4. Websocket URL: http://PRIVATE_IP_ADDRESS:PORT_2

  1. Beacon Node:

    1. Client Mode: Externally Managed

    2. Beacon Node: Select from the dropdown menu according to your actual externally managed Consensus Client used. Note: Grandine is not available.

    3. HTTP URL: http://PRIVATE_IP_ADDRESS:PORT_3

  1. MEV-Boost:

    1. Enable Mev-Boost: Make sure this box is checked (X).

    2. Mev-Boost Mode: Externally Managed

  2. Fallback Clients:

    1. Use Fallback Clients: Check this box (X) if you want to use a fallback client.

    2. Execution Client URL: http://PRIVATE_IP_ADDRESS:PORT_1

    3. Beacon Node URL: http://PRIVATE_IP_ADDRESS:PORT_3

    4. RPC URL (Prysm Only): Only use this if you are running Prysm as your Consensus Client/Beacon Node. Defaults to http://PRIVATE_IP_ADDRESS:4000.

  3. All other configuration options: Keep to default settings

Saving your settings

Use the TAB button to navigate to the Review Changes and Save button at the bottom of the TUI.

You will then see the following prompts:

  • Would you like to start the Hyperdrive services automatically now? [y/n]

  • It looks like this is your first time starting a Validator Client. Just to be sure, does your node have any existing, active validators attesting on the Beacon Chain? [y/n]

Hit y and Enter for both if you do not have the same validator keys loaded onto Hyperdrive running elsewhere for at least 15 minutes (e.g., fresh install of Hyperdrive with no validator keys assigned to you yet).

Creating the Hyperdrive node wallet

After the containers start, Hyperdrive will check your wallet status.

In a fresh installation, it detects that you don't have a wallet and offers to create one.

  • For a new install, respond with y.

  • If this installation is part of disaster recovery or migration, choose n, as you'll use the recover wallet command instead.

Hyperdrive then walks you through creation of the wallet, presenting the mnemonic, and testing to ensure you saved it.

Generate validator keys

Generate 17 new Ethereum validator keys (current limit per operator).

Expected output:

Fund your Node Wallet

Fund your node wallet with 0.01 ETH to pay the gas costs of generating validators. Each validator costs approximately 0.00034 ETH at 1 gwei gas costs.

To retrieve your Node Wallet address.

Register your Node Wallet Address

  • Head over to https://nodeset.io/ and go to Dashboard

  • Connect your wallet and go to Node Addresses

  • Add your Node Address

  • Sign the terms of service on the Stakewise Dashboard

Monitoring your services

All logs:

Validator client.

Hyperdrive operator service.

  • Ignore these warnings:

Check validator key allocations from Nodeset.

Set up alerts

Use the following tools for easy alerting setup when your validators go offline or are underperforming.

Updating Hyperdrive

Download the latest binary release of Hyperdrive into /usr/bin and make this binary file executable.

Install Hyperdrive.

Restart Hyperdrive for the changes to take effect.

Reference:

Official Hyperdrive guide by Nodeset.

Last updated