

ToC
Hi everyone, thank you for joining Lido’s integration of Obol based DVT on mainnet as part of the Simple DVT Module. All participating members have been split into various clusters that represent your group to operate DVs (distributed validators) and will represent an entry in the Lido Node Operator registry. Each cluster will coordinate in a corresponding Discord channel thread that will be used to set up a SAFE Multisig, represent an entry in the Lido Node Operator registry, coordinate a DKG ceremony, and run distributed validators on mainnet.
When your team has chosen the cluster coordinator, please tag @kimonsh, @nameisremus, @.snk999 A form (linked below) will be used to collect each cluster member’s Ethereum addresses that they plan to use to sign messages in the SAFE, sign the distributed validator config and receive validators’ rewards to.
Each cluster member must submit the form and verify the address(es) they would like to use. Each cluster member should submit up to two addresses.
*Multisig support will be added in the future, however is not available at this time
Each individual participant is responsible for the security and storage of the private key(s) related to these addresses. Please confirm that you have your seed phrase backed up and the address is secure before submitting. This is crucial for signing transactions and receiving rewards over the coming years.
Use this form to submit your address and verification link (see verification instructions below): https://forms.gle/nT3oUcmM1FLYGaSBA
Use the following guide to prepare and sign a message that will be used for verification of your chosen manager and (where applicable) reward address:
In case of using externally owned account (EOA):
Once the form is filled out, please tag @kimonsh, @nameisremus, @.snk999 and wait for confirmation to proceed further.
Once each cluster members has submitted the form and Lido NOM team has approved, the addresses will be shared to the group and the cluster coordinator will create the 5/7 threshold Safe Multisig using each cluster member’s individual manager address on mainnet (https://app.safe.global/). When the Safe is created, share the Safe URL for your cluster to review and tag @kimonsh, @nameisremus, @.snk999. This address will be your cluster’s representation in the Lido Simple DVT Node Operator Registry.
Each cluster should also pin a message with basic info in their threads:
<participant name> : <ETH address here> | <participant cluster identifier>
<participant2 name> : <ETH address here> | <participant3 cluster identifier>
<participant3 name> : <ETH address here> | <participant3 cluster identifier>
repeat above 'n' times where 'n' = cluster size
The cluster identifier will be obtained at the end of the DKG (steps below). Update the message to reflect it once done.
During this time, the Simple DVT Module Committee will add your cluster to the Lido Node Operator Registry using the SAFE multisig you provided.
<aside> ℹ️ NOTE: It’s an NO’s responsibility to make sure that configurations and software are correct, to aid in this we’ve created a config guide to help you double check values as you go through the guide and configure your software. Simple DVT Config Guide Mainnet
</aside>
All operators should already be familiar with the Obol Launchpad Quickstart Guide - Operator Journey and launchpad walkthrough video.
All cluster participants should have already shared their individual manager and reward addresses in their cluster-specific form (see above).
To prepare for the distributed key generation (DKG) ceremony, you need to create an ENR. On the machine where you plan to run your Obol DVs, run the following commands to get your ENR.
# Clone this repo
git clone <https://github.com/ObolNetwork/lido-charon-distributed-validator-node.git>
# Change directory
cd lido-charon-distributed-validator-node
# Create your charon ENR private key, this will create a charon-enr-private-key file in the .charon directory
docker run -u $(id -u):$(id -g) --rm -v "$(pwd):/opt/charon" obolnetwork/charon:v1.4.3 create enr
You should see an output similar to the below:
Created ENR private key: .charon/charon-enr-private-key
enr:-JG4QGQpV4qYe32QFUAbY1UyGNtNcrVMip83cvJRhw1brMslPeyELIz3q6dsZ7GblVaCjL_8FKQhF6Syg-O_kIWztimGAYHY5EvPgmlkgnY0gmlwhH8AAAGJc2VjcDI1NmsxoQKzMe_GFPpSqtnYl-mJr8uZAUtmkqccsAx7ojGmFy-FY4N0Y3CCDhqDdWRwgg4u
<aside>
⚠️ Please make sure to create a backup of the private key created at .charon/charon-enr-private-key. Be careful not to commit it to git! If you lose this file you won't be able to take part in the DKG ceremony and start the DV cluster successfully. ⚠️
</aside>
Each cluster config will be created by the Obol team who will send a specific invite code to each cluster as a URL link.
Operators will follow the invite link to their cluster set up page in the DV Launchpad, they will review the cluster configuration, input their previously-generated ENR, and sign a message using their individual manager address provided earlier to confirm the cluster configuration.
Here are the steps to follow in detail once on the invite link:
Connect your wallet using the individual manager address provided in the form.
Review the other operator manager addresses in the cluster and click Get Started to continue
Review and accept the advisories
Review the configuration - confirm that the withdrawal address and fee recipient match Lido’s requirements.
The withdrawal address for Lido withdrawal credentials:
0xb9d7934878b5fb9610b3fe8a5e441e8fad7e293f
The Fee Recipient address for Lido Execution Layer Rewards Vault:
0x388C818CA8B9251b393131C08a736A67ccB19297
Input the ENR that you previously generated.
Sign the following with your wallet
Wait for all the other operators in your cluster to do the same.
Once all operators have successfully signed the operator configuration, the next step is to perform the Distributed Key Generation ceremony.
A command will be automatically displayed in the launchpad once all operators have signed the config. Running that command will start the DKG process for your node.
Please note this process requires semi-synchronous coordination between all cluster operators. Your cluster should determine a time window of ~ 6 hours that all members can meet to conduct this one-time process.
When you start the DKG ceremony, you shouldn’t stop the process until all members have completed the ceremony.
You can’t just run the command and then turn your machine off! You must wait for everyone to run the command and the DKG to finish (<60sec). However, you can let the command run in the background as it will retry the DKG until successful.
When the DKG ceremony has been completed, operators will see the following messages:
All peers connected, starting DKG ceremony
dkg Successfully completed DKG ceremony 🎉
The artifacts of the DKG ceremony will be created in the .charon folder for each member (inside their lido-distributed-validator-node repo).
deposit-data.json file (the same across all operators)cluster-lock.json file (the same across all operators)validator_keys/ folder NOTE: unique to each operator, make a backup and keep it somewhere safe!💡 Please ensure that ALL the operators have the above files created successfully before moving forward.
<aside>
⚠️ Please ensure that you have backed up your validator_keys/ folder. There is no way to recover your private key share or take part in the DV if you lose it.
</aside>
While the quick-start guide linked above is adequate for general-purpose deployments, this repository needs further setup to integrate with Lido’s smart contracts:
.env file in the validator-ejector config section:cp .env.sample.mainnet .env
export MY_OPERATOR_ID=your_operator_id_here
sed -i.bak "s|#VE_OPERATOR_ID=|VE_OPERATOR_ID=$MY_OPERATOR_ID|g" .env
Reference the README for more information.
To optimise for latency, your cluster will be assigned a few MEV-Boost relays depending on your cluster location and any potential filtering requirements. Please add these relays in the .env by following the below instructions. A table of each relay’s URI is included here: https://enchanted-direction-844.notion.site/6d369eb33f664487800b0dedfe32171e?v=8e5d1f1276b0493caea8a2aa1517ed65&pvs=74
By default, the template repo is configured with all listed relays included so no change should be required through the .env unless you are a cluster that will be using a limited set of relays (this will be communicated to your cluster).
| --- | --- | --- |