Skip to content

Commit 6dec1ec

Browse files
authored
docs: update operator guide to v0.5.2 (#908)
1 parent 535f10e commit 6dec1ec

File tree

1 file changed

+13
-2
lines changed

1 file changed

+13
-2
lines changed

docs/operator_guides/0_running_an_operator.md

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Register as an Aligned operator in testnet
22

33
> **CURRENT VERSION:**
4-
> Aligned Operator [v0.4.0](https://github.com/yetanotherco/aligned_layer/releases/tag/v0.4.0)
4+
> Aligned Operator [v0.5.2](https://github.com/yetanotherco/aligned_layer/releases/tag/v0.5.2)
55
66
> **IMPORTANT:**
77
> You must be [whitelisted](https://docs.google.com/forms/d/e/1FAIpQLSdH9sgfTz4v33lAvwj6BvYJGAeIshQia3FXz36PFfF-WQAWEQ/viewform) to become an Aligned operator.
@@ -41,7 +41,7 @@ Minimum hardware requirements:
4141
To start with, clone the Aligned repository and move inside it
4242

4343
```bash
44-
git clone https://github.com/yetanotherco/aligned_layer.git --branch v0.4.0
44+
git clone https://github.com/yetanotherco/aligned_layer.git --branch v0.5.2
4545
cd aligned_layer
4646
```
4747

@@ -107,6 +107,17 @@ Update the following placeholders in `./config-files/config-operator.yaml`:
107107
`"<ecdsa_key_store_location_path>"` and `"<bls_key_store_location_path>"` are the paths to your keys generated with the EigenLayer CLI, `"<operator_address>"` and `"<earnings_receiver_address>"` can be found in the `operator.yaml` file created in the EigenLayer registration process.
108108
The keys are stored by default in the `~/.eigenlayer/operator_keys/` directory, so for example `<ecdsa_key_store_location_path>` could be `/path/to/home/.eigenlayer/operator_keys/some_key.ecdsa.key.json` and for `<bls_key_store_location_path>` it could be `/path/to/home/.eigenlayer/operator_keys/some_key.bls.key.json`.
109109

110+
The default configuration uses the public nodes RPC, but we suggest you use your own nodes for better performance and reliability.
111+
Also, from v0.5.2 there is a fallback mechanism to have two RPCs, so you can add a second RPC for redundancy.
112+
113+
```yaml
114+
eth_rpc_url: "https://ethereum-holesky-rpc.publicnode.com"
115+
eth_rpc_url_fallback: "https://ethereum-holesky-rpc.publicnode.com"
116+
eth_ws_url: "wss://ethereum-holesky-rpc.publicnode.com"
117+
eth_ws_url_fallback: "wss://ethereum-holesky-rpc.publicnode.com"
118+
```
119+
120+
110121
## Step 4 - Deposit Strategy Tokens
111122
112123
We are using [WETH](https://holesky.eigenlayer.xyz/restake/WETH) as the strategy token.

0 commit comments

Comments
 (0)