You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You can create the config files needed for operator registration using the below command:
211
-
212
-
```bash
213
-
eigenlayer operator config create
214
-
```
215
-
216
-
It will create two files: `operator.yaml` and `metadata.json`
217
-
After filling in the details in `metadata.json`, please upload this into a publicly accessible location and fill that URL in `operator.yaml`.
218
-
A valid metadata URL is required for successful registration.
219
-
A sample yaml [operator.yaml](pkg/operator/config/operator-config-example.yaml) is provided for reference.
220
-
221
-
A public metadata URL is required to register the operator.
222
-
After creating and filling the [metadata](pkg/operator/config/metadata-example.json) file, you can it to a publicly accessible location and give the URL in the config file.
223
-
You are also required to upload the image of the operator to a publicly accessible location and give the URL in the metadata file. We only support `.png` images for now.
224
-
225
-
226
-
### Registration
227
-
>ECDSA and BLS keys are required for operator registration.
228
-
You may choose to either [create](#create-keys) your own set of keys using the EigenLayer CLI (recommended for first time users) or [import](#import-keys) your existing keys (recommended for advanced users who already have keys created).
229
-
230
-
You can register your operator using the command below.
231
-
232
-
```bash
233
-
eigenlayer operator register operator.yaml
234
-
```
235
-
236
-
Make sure that if you use `local_keystore` as the signer, you give the path to the keys created in the above section.
237
-
238
-
After you complete the registration, you can check the registration status of your operator using
239
-
240
-
```bash
241
-
eigenlayer operator status operator.yaml
242
-
```
243
-
244
-
You can also update the operator metadata using
245
-
246
-
```bash
247
-
eigenlayer operator update operator.yaml
248
-
```
118
+
If you see any issues in documentation please create an issue or PR [here](https://github.com/Layr-Labs/eigenlayer-docs)
0 commit comments