Method 1: Configure on validator keys

Validator Clients

Assuming your Teku validator client is already set up, stop your Teku validator client.

sudo systemctl stop tekuvalidator.service

Find the pubkey values of your own non-CSM validator keystores generated.

sudo find /var/lib -name "keystore*.json"

For each resulting filepath, run:

grep -oP '"pubkey": *"\K[^"]+' RESULTING_FILEPATH

You should now have a list of all your own non-CSM validator keystore pubkeys.

Create a custom proposer configuration file.

sudo nano /var/lib/teku_validator/validator/proposer_configuration.json

Paste the following contents into the file.

{
  "proposer_config": {
    "YOUR_OWN_VALIDATOR_PUBKEY_(NOT_CSM)_01": {
      "fee_recipient": "YOUR_OWN_FEE_RECIPIENT_ADDRESS",
      "builder": {
        "enabled": true
      }
    },
    "YOUR_OWN_VALIDATOR_PUBKEY_(NOT_CSM)_02": {
      "fee_recipient": "YOUR_OWN_FEE_RECIPIENT_ADDRESS",
      "builder": {
        "enabled": true
      }
    },
    "YOUR_OWN_VALIDATOR_PUBKEY_(NOT_CSM)_03": {
      "fee_recipient": "YOUR_OWN_FEE_RECIPIENT_ADDRESS",
      "builder": {
        "enabled": true
      }
    }
  },
  "default_config": {
    "fee_recipient": "LIDO_EXECUTION_LAYER_REWARDS_VAULT",
    "builder": {
      "enabled": true
    }
  }
}

Replace YOUR_OWN_VALIDATOR_PUBKEY_(NOT_CSM) with your own actual validator pubkeys (NOT CSM).

Replace YOUR_OWN_FEE_RECIPIENT_ADDRESS with your desired wallet address.

Replace LIDO_EXECUTION_LAYER_REWARDS_VAULT with the following options.

  • Mainnet

  • Hoodi

CTRL+O, ENTER, CTRL+X to save and exit.

Set the permissions of the custom proposer configuration file.

Adding more non-CSM validator keystores:

If you want to add more of your own validator keystores, replicate the following segment, taking note of the indentation.

CTRL+O, ENTER, CTRL+X to save and exit.

Edit the Teku validator client service file.

Add the --validators-proposer-config flag and point it to the proposer_configuration.json file. Then remove the --validators-proposer-default-fee-recipient flag. e.g.,

CTRL+O, ENTER, CTRL+X to save and exit.

Restart your Teku validator client.

Monitor for errors.

Automation Tools

With ETH Docker running (i.e., ethd up), run

then

with the public key of the key you wish to set a separate fee recipient for, and the Ethereum address fees should go to.

Last updated