|
1 | 1 | # Register as an Aligned operator in testnet |
2 | 2 |
|
3 | 3 | > **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) |
5 | 5 |
|
6 | 6 | > **IMPORTANT:** |
7 | 7 | > 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: |
41 | 41 | To start with, clone the Aligned repository and move inside it |
42 | 42 |
|
43 | 43 | ```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 |
45 | 45 | cd aligned_layer |
46 | 46 | ``` |
47 | 47 |
|
@@ -107,6 +107,17 @@ Update the following placeholders in `./config-files/config-operator.yaml`: |
107 | 107 | `"<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. |
108 | 108 | 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`. |
109 | 109 |
|
| 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 | +
|
110 | 121 | ## Step 4 - Deposit Strategy Tokens |
111 | 122 |
|
112 | 123 | We are using [WETH](https://holesky.eigenlayer.xyz/restake/WETH) as the strategy token. |
|
0 commit comments