From 3ead02ae4961538b4d19baa5fc1693149ae04786 Mon Sep 17 00:00:00 2001 From: Gian <58370608+glpecile@users.noreply.github.com> Date: Thu, 5 Sep 2024 15:41:18 -0300 Subject: [PATCH 1/4] docs(running-an-operator): fmt table --- docs/operator_guides/0_running_an_operator.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/operator_guides/0_running_an_operator.md b/docs/operator_guides/0_running_an_operator.md index b0c3222147..d93c6c881c 100644 --- a/docs/operator_guides/0_running_an_operator.md +++ b/docs/operator_guides/0_running_an_operator.md @@ -30,7 +30,7 @@ This guide assumes you are already [registered as an operator with EigenLayer](h Minimum hardware requirements: | Component | Specification | -| ------------- | ----------------- | +|---------------|-------------------| | **CPU** | 16 cores | | **Memory** | 32 GB RAM | | **Bandwidth** | 1 Gbps | From b8ddc5b17ee9179978b941bcefe567faff6b6395 Mon Sep 17 00:00:00 2001 From: Gian <58370608+glpecile@users.noreply.github.com> Date: Thu, 5 Sep 2024 15:41:50 -0300 Subject: [PATCH 2/4] docs(running-an-operator): remove unnecessary closing tag --- docs/operator_guides/0_running_an_operator.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/operator_guides/0_running_an_operator.md b/docs/operator_guides/0_running_an_operator.md index d93c6c881c..55483f2a82 100644 --- a/docs/operator_guides/0_running_an_operator.md +++ b/docs/operator_guides/0_running_an_operator.md @@ -153,7 +153,7 @@ as shown in the EigenLayer guide. ```bash ./operator/build/aligned-operator deposit-into-strategy --config ./config-files/config-operator.yaml --strategy-address 0x80528D6e9A2BAbFc766965E0E26d5aB08D9CFaF9 --amount 1000000000000000000 ``` - + If you don't have Holesky ETH, these are some useful faucets: From cc2eda9d24e2d61dc09dc9bd7492afe30cd45008 Mon Sep 17 00:00:00 2001 From: Gian <58370608+glpecile@users.noreply.github.com> Date: Thu, 5 Sep 2024 15:43:17 -0300 Subject: [PATCH 3/4] docs(running-an-operator): nit language --- docs/operator_guides/0_running_an_operator.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/operator_guides/0_running_an_operator.md b/docs/operator_guides/0_running_an_operator.md index 55483f2a82..7316b92b85 100644 --- a/docs/operator_guides/0_running_an_operator.md +++ b/docs/operator_guides/0_running_an_operator.md @@ -122,9 +122,9 @@ eth_ws_url_fallback: "wss://ethereum-holesky-rpc.publicnode.com" We are using [WETH](https://holesky.eigenlayer.xyz/restake/WETH) as the strategy token. -To do so there are 2 options, either doing it through EigenLayer's website, and following their guide, or running the commands specified by us below. +To do so, there are two options, either doing it through EigenLayer's website, and following their guide, or running the commands specified by us below. -You will need to stake a minimum of a 1000 Wei in WETH. We recommend to stake a maximum amount of 10 WETH. If you are staking more than 10 WETH please unstake any surplus over 10. +You will need to stake a minimum of 1000 WEI in WETH. We recommend to stake a maximum amount of 10 WETH. If you are staking more than 10 WETH please unstake any surplus over 10. ### Option 1 @@ -133,7 +133,7 @@ EigenLayer's guide can be found [here](https://docs.eigenlayer.xyz/eigenlayer/re ### Option 2 If you have ETH and need to convert it to WETH you can use the following command, that will convert 1 ETH to WETH. -Make sure to have [foundry](https://book.getfoundry.sh/getting-started/installation) installed. +Make sure to have [foundry](https://book.getfoundry.sh/getting-started/installation) already installed. Change the parameter in ```---value``` if you want to wrap a different amount: ```bash From 5c81058e9ff27fe7a234df36e79f9957757b6105 Mon Sep 17 00:00:00 2001 From: Gian <58370608+glpecile@users.noreply.github.com> Date: Thu, 5 Sep 2024 15:43:46 -0300 Subject: [PATCH 4/4] docs(running-an-operator): remove supported verifiers --- docs/operator_guides/0_running_an_operator.md | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/docs/operator_guides/0_running_an_operator.md b/docs/operator_guides/0_running_an_operator.md index 7316b92b85..2a80f23e6f 100644 --- a/docs/operator_guides/0_running_an_operator.md +++ b/docs/operator_guides/0_running_an_operator.md @@ -6,21 +6,6 @@ > **IMPORTANT:** > You must be [whitelisted](https://docs.google.com/forms/d/e/1FAIpQLSdH9sgfTz4v33lAvwj6BvYJGAeIshQia3FXz36PFfF-WQAWEQ/viewform) to become an Aligned operator. -## Supported Verifiers - -The following is the list of the verifiers currently supported by Aligned: - -- :white_check_mark: gnark - Groth16 (with BN254) -- :white_check_mark: gnark - Plonk (with BN254 and BLS12-381) -- :white_check_mark: SP1 [(v1.0.1)](https://github.com/succinctlabs/sp1/releases/tag/v1.0.1) -- :white_check_mark: Risc0 [(v1.0.1)](https://github.com/risc0/risc0/releases/tag/v1.0.1) - -The following proof systems are going to be added soon: - -- :black_square_button: Kimchi -- :black_square_button: Halo2 - Plonk/KZG -- :black_square_button: Halo2 - Plonk/IPA - ## Requirements This guide assumes you are already [registered as an operator with EigenLayer](https://docs.eigenlayer.xyz/eigenlayer/operator-guides/operator-installation).