ワンクリックで
add-operators
Add new operators to an existing Charon distributed validator cluster
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Add new operators to an existing Charon distributed validator cluster
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Query the local Grafana/Prometheus/Loki stack shipped with this CDVN repo. Use when investigating cluster health, charon/beacon/EL errors, peer connectivity, validator performance, or log patterns against the locally-running monitoring stack (not Obol's hosted Grafana).
Add new validators to an existing Charon distributed validator cluster
Export the anti-slashing database (EIP-3076) from the validator client
Import an anti-slashing database (EIP-3076) into the validator client
Recreate private key shares for a Charon cluster while keeping the same validator public keys
Remove operators from an existing Charon distributed validator cluster
| name | add-operators |
| description | Add new operators to an existing Charon distributed validator cluster |
| user-invokable | true |
Warning: This is an alpha feature and is not yet recommended for production use.
Expand a Charon cluster by adding new operators. This is a coordinated operation involving both existing and new operators.
Read scripts/edit/add-operators/README.md for full details if needed.
Common prerequisites:
.env file exists with NETWORK and VC variables set.charon directory with cluster-lock.json and charon-enr-private-keyjq installedAsk the user: "Are you an existing operator in the cluster, or a new operator joining?"
Script: scripts/edit/add-operators/existing-operator.sh
Additional prerequisites:
.charon/cluster-lock.json and .charon/validator_keys/ must existArguments to gather:
--new-operator-enrs: Comma-separated ENRs of the new operators joining--dry-run firstRun:
./scripts/edit/add-operators/existing-operator.sh \
--new-operator-enrs "enr:-...,enr:-..." \
[--dry-run]
Set WORK_DIR env var to override the repository root directory if running from a custom location.
The script will export the anti-slashing database, run the P2P ceremony, update keys, and print commands to start containers manually. After completion, remind the user to wait ~2 epochs before starting containers.
Script: scripts/edit/add-operators/new-operator.sh
This is a two-step process:
Ask if the user needs to generate an ENR (first time setup):
./scripts/edit/add-operators/new-operator.sh --generate-enr
This creates .charon/charon-enr-private-key and displays the ENR. Tell the user to share this ENR with the existing operators.
The existing operators, in turn, need to share the cluster-lock.json with the new operators, which contains the current cluster configuration and is required for the P2P ceremony.
After the existing operators have the ENR, gather:
--new-operator-enrs: Comma-separated ENRs of ALL new operators (including their own)--cluster-lock: Path to the cluster-lock.json received from existing operators--dry-run first./scripts/edit/add-operators/new-operator.sh \
--new-operator-enrs "enr:-...,enr:-..." \
--cluster-lock ./received-cluster-lock.json \
[--dry-run]
Set WORK_DIR env var to override the repository root directory if running from a custom location.
Remind the user that all operators (existing AND new) must participate simultaneously in the P2P ceremony. After completion, the script will print commands to start containers manually. The new operator does NOT have slashing protection history (fresh start).