Skip to content

Commit cc698f1

Browse files
authored
docs: update Running an Operator guide with Hoodi network (#2096)
1 parent 22b70ff commit cc698f1

File tree

1 file changed

+51
-3
lines changed

1 file changed

+51
-3
lines changed

docs/operator_guides/0_running_an_operator.md

Lines changed: 51 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ make foundry_install
5555
foundryup
5656
```
5757

58-
To build the operator binary for **Testnet**, run:
58+
To build the operator binary for **Hoodi** or **Holesky**, run:
5959

6060
```bash
6161
make operator_build ENVIRONMENT=testnet
@@ -69,7 +69,7 @@ make operator_build ENVIRONMENT=mainnet
6969

7070
### Upgrading the Operator
7171

72-
If you want to upgrade the operator in **Testnet**, run:
72+
If you want to upgrade the operator in **Hoodi** or **Holesky**, run:
7373

7474
```bash
7575
make operator_update ENVIRONMENT=testnet
@@ -101,6 +101,7 @@ Locate the appropiate `operator_config_file`:
101101

102102
- Mainnet: `./config-files/config-operator-mainnet.yaml`.
103103
- Holesky: `./config-files/config-operator-holesky.yaml`.
104+
- Hoodi: `./config-files/config-operator-hoodi.yaml`.
104105

105106
Update the following placeholders:
106107

@@ -162,6 +163,12 @@ Then you must register as an Operator on AlignedLayer. To do this, you must run:
162163
```bash
163164
make operator_register_with_aligned_layer CONFIG_FILE=./config-files/config-operator-holesky.yaml
164165
```
166+
167+
- Hoodi:
168+
169+
```bash
170+
make operator_register_with_aligned_layer CONFIG_FILE=./config-files/config-operator-hoodi.yaml
171+
```
165172

166173
{% hint style="danger" %}
167174
If you are going to run the server in this machine,
@@ -181,6 +188,12 @@ delete the operator key
181188
```bash
182189
./operator/build/aligned-operator start --config ./config-files/config-operator-holesky.yaml
183190
```
191+
192+
- Hoodi:
193+
194+
```bash
195+
./operator/build/aligned-operator start --config ./config-files/config-operator-hoodi.yaml
196+
```
184197

185198
### Run Operator using Systemd
186199

@@ -275,11 +288,17 @@ To unregister the Aligned operator, run:
275288
```bash
276289
cast send --rpc-url https://ethereum-holesky-rpc.publicnode.com --private-key <private_key> 0x3aD77134c986193c9ef98e55e800B71e72835b62 'deregisterOperator(bytes)' 0x00
277290
```
291+
292+
- Hoodi:
293+
294+
```bash
295+
cast send --rpc-url https://ethereum-hoodi-rpc.publicnode.com --private-key <private_key> 0xD06AAf23d136ECBfb5Bdb349Dd7a87aDc74673Dd 'deregisterOperator(bytes)' 0x00
296+
```
278297

279298
`<private_key>` is the one specified in the output when generating your keys with the EigenLayer CLI.
280299

281300

282-
## Deposit Strategy Tokens in Testnet
301+
## Deposit Strategy Tokens in Holesky
283302

284303
We are using [WETH](https://holesky.eigenlayer.xyz/restake/WETH) as the strategy token.
285304

@@ -322,3 +341,32 @@ If you don't have Holesky ETH, these are some useful faucets:
322341
- [Google Cloud for Web3 Holesky Faucet](https://cloud.google.com/application/web3/faucet/ethereum/holesky)
323342
- [Holesky PoW Faucet](https://holesky-faucet.pk910.de/)
324343

344+
## Deposit Strategy Tokens in Hoodi
345+
346+
You can restake [stETH](https://hoodi.eigenlayer.xyz/token/stETH) as the strategy token.
347+
348+
You will need to stake a minimum of 1000 WEI in stETH. We recommend to stake a maximum amount of 10 stETH. If you are staking more than 10 stETH please unstake any surplus over 10.
349+
350+
If you already have ETH and need to convert it to stETH, you can get it from [Lido Website](https://stake-hoodi.testnet.fi/).
351+
352+
Finally, to end the staking process, you need to deposit into the stETH strategy,
353+
354+
There are two options, either doing it through EigenLayer's website, or running the commands specified by us below.
355+
356+
### Option 1
357+
358+
To restake through EigenLayer's website, go to [stETH strategy](https://hoodi.eigenlayer.xyz/token/stETH).
359+
360+
### Option 2
361+
362+
To deposit one stETH using the Operator CLI, run the following command:
363+
364+
```bash
365+
./operator/build/aligned-operator deposit-into-strategy --config ./config-files/config-operator.yaml --strategy-address 0x19536FAd6Eb831e8211B316177979161BBdb2c2B --amount 1000000000000000000
366+
```
367+
368+
Where [`0x19536FAd6Eb831e8211B316177979161BBdb2c2B`](https://hoodi.etherscan.io/address/0x19536FAd6Eb831e8211B316177979161BBdb2c2B) is the stETH strategy address in Hoodi.
369+
370+
If you don't have Hoodi ETH, these are some useful faucets:
371+
372+
- [Hoodi PoW Faucet](https://hoodi-faucet.pk910.de/)

0 commit comments

Comments
 (0)