Commit def16fbf authored by Parithosh Jayanthi's avatar Parithosh Jayanthi Committed by GitHub

Merge pull request #33 from parithosh/nimbus-fix

Updates version to fix nimbus post-merge genesis issue
parents 2bf1bf90 23f7e807
...@@ -81,7 +81,7 @@ To configure the package behaviour, you can modify your `eth2-package-params.yam ...@@ -81,7 +81,7 @@ To configure the package behaviour, you can modify your `eth2-package-params.yam
// Defaults by client (note that Prysm is different in that it requires two images - a Beacon and a validator - separated by a comma): // Defaults by client (note that Prysm is different in that it requires two images - a Beacon and a validator - separated by a comma):
// - lighthouse: sigp/lighthouse:latest // - lighthouse: sigp/lighthouse:latest
// - teku: consensys/teku:latest // - teku: consensys/teku:latest
// - nimbus: parithoshj/nimbus:merge-a845450 // - nimbus: statusim/nimbus-eth2:multiarch-latest
// - prysm: gcr.io/prysmaticlabs/prysm/beacon-chain:latest,gcr.io/prysmaticlabs/prysm/validator:latest // - prysm: gcr.io/prysmaticlabs/prysm/beacon-chain:latest,gcr.io/prysmaticlabs/prysm/validator:latest
// - lodestar: chainsafe/lodestar:next // - lodestar: chainsafe/lodestar:next
"cl_client_image": "", "cl_client_image": "",
...@@ -165,9 +165,8 @@ To configure the package behaviour, you can modify your `eth2-package-params.yam ...@@ -165,9 +165,8 @@ To configure the package behaviour, you can modify your `eth2-package-params.yam
``` ```
</details> </details>
Note: Following an update starting the network post-merge, `erigon`, `nimbus` and `prysm` clients don't work anymore. Fixes are tracked in the following Github issues: Note: Following an update starting the network post-merge, `erigon`, and `prysm` clients don't work anymore. Fixes are tracked in the following Github issues:
- Prysm: [#11508][prysm-issue] - Prysm: [#11508][prysm-issue]
- Nimbus: [#4193][nimbus-issue]
- Erigon: [#154][erigon-issue] - Erigon: [#154][erigon-issue]
You can find the latest Kiln compatible docker images here: https://notes.ethereum.org/@launchpad/kiln You can find the latest Kiln compatible docker images here: https://notes.ethereum.org/@launchpad/kiln
...@@ -208,5 +207,4 @@ When you're happy with your changes: ...@@ -208,5 +207,4 @@ When you're happy with your changes:
[starlark-docs]: https://docs.kurtosis.com/explanations/starlark [starlark-docs]: https://docs.kurtosis.com/explanations/starlark
[using-the-cli]: https://docs.kurtosis.com/cli [using-the-cli]: https://docs.kurtosis.com/cli
[prysm-issue]: https://github.com/prysmaticlabs/prysm/issues/11508 [prysm-issue]: https://github.com/prysmaticlabs/prysm/issues/11508
[nimbus-issue]: https://github.com/status-im/nimbus-eth2/issues/4193
[erigon-issue]: https://github.com/kurtosis-tech/eth2-merge-kurtosis-module/issues/154 [erigon-issue]: https://github.com/kurtosis-tech/eth2-merge-kurtosis-module/issues/154
\ No newline at end of file
...@@ -3,6 +3,8 @@ ...@@ -3,6 +3,8 @@
### Changes ### Changes
- Updated `run(input_args)` to `run(args)` - Updated `run(input_args)` to `run(args)`
- Removed `print(output)` at the end as it is now printed by the framework - Removed `print(output)` at the end as it is now printed by the framework
- Updates nimbus default docker image
- Updates `genesis-generator` image to include a fix for nimbus post-merge genesis
# 0.0.4 # 0.0.4
### Changes ### Changes
......
...@@ -8,7 +8,7 @@ DEFAULT_EL_IMAGES = { ...@@ -8,7 +8,7 @@ DEFAULT_EL_IMAGES = {
DEFAULT_CL_IMAGES = { DEFAULT_CL_IMAGES = {
"lighthouse": "sigp/lighthouse:latest", "lighthouse": "sigp/lighthouse:latest",
"teku": "consensys/teku:latest", "teku": "consensys/teku:latest",
"nimbus": "parithoshj/nimbus:merge-a845450", "nimbus": "statusim/nimbus-eth2:multiarch-latest",
"prysm": "gcr.io/prysmaticlabs/prysm/beacon-chain:latest,gcr.io/prysmaticlabs/prysm/validator:latest", "prysm": "gcr.io/prysmaticlabs/prysm/beacon-chain:latest,gcr.io/prysmaticlabs/prysm/validator:latest",
"lodestar": "chainsafe/lodestar:next", "lodestar": "chainsafe/lodestar:next",
} }
......
IMAGE = "ethpandaops/ethereum-genesis-generator:1.0.2" IMAGE = "ethpandaops/ethereum-genesis-generator:1.0.3"
SERVICE_ID_PREFIX = "prelaunch-data-generator-" SERVICE_ID_PREFIX = "prelaunch-data-generator-"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment