From b6bb7291f4489210d65e0baef0b767965a1f3599 Mon Sep 17 00:00:00 2001 From: mgarciate Date: Wed, 12 Jun 2024 17:17:21 +0200 Subject: [PATCH] Add MAINNET changes --- GETTING_STARTED.md | 4 ++-- build/api/src/AppConfig.ts | 2 +- build/api/src/index.ts | 2 +- build/ui/src/types/AppConfig.ts | 2 +- dappnode_package.json | 15 ++++++--------- docker-compose.yml | 12 ++++++------ setup-wizard.yml | 2 +- 7 files changed, 18 insertions(+), 21 deletions(-) diff --git a/GETTING_STARTED.md b/GETTING_STARTED.md index 2740fe5..4ddbfca 100644 --- a/GETTING_STARTED.md +++ b/GETTING_STARTED.md @@ -1,9 +1,9 @@ How Rocket Pool Works. Unlike solo stakers, who are required to put 32 ETH up for deposit to create a new validator, Rocket Pool nodes only need to deposit 8/16 ETH per validator. This will be coupled with 16 ETH from the staking pool (which stakers deposited in exchange for rETH) to create a new Ethereum validator. This new validator is called a minipool. -Start with Rocket Pool at [http://rocketpool-testnet.public.dappnode/](http://rocketpool-testnet.public.dappnode/) +Start with Rocket Pool at [http://rocketpool.dappnode/](http://rocketpool.dappnode/) ℹ️ Rocket Pool supports three different Execution clients: Geth, Besu, and Nethermind. ℹ️ Rocket Pool supports five Consensus clients: Lighthouse, Lodestar, Nimbus, Prysm, and Teku. -⚠️ When creating a wallet or adding a minipool, it is crucial to go to the [backup tab](http://my.dappnode/#/packages/rocketpool-testnet.public.dappnode.eth/backup) and download your backup, as it provides a necessary safety measure in case of any unforeseen circumstances that may cause data loss or corruption, and ensures that you can easily recover your information when required. +⚠️ When creating a wallet or adding a minipool, it is crucial to go to the [backup tab](http://my.dappnode/packages/my/rocketpool.dnp.dappnode.eth/backup) and download your backup, as it provides a necessary safety measure in case of any unforeseen circumstances that may cause data loss or corruption, and ensures that you can easily recover your information when required. diff --git a/build/api/src/AppConfig.ts b/build/api/src/AppConfig.ts index 4fc1e41..c6366ab 100644 --- a/build/api/src/AppConfig.ts +++ b/build/api/src/AppConfig.ts @@ -26,7 +26,7 @@ class AppConfig { w3sUrl: `http://web3signer.web3signer${w3sSuffix}.dappnode:9000`, rpExplorerUrl: `https://${networkPrefix}rocketscan.io`, explorerUrl: `https://${networkPrefix}etherscan.io`, - package: isMainnet ? `rocketpool.public.dappnode` : `rocketpool-testnet.public.dappnode`, + package: isMainnet ? `rocketpool.dnp.dappnode` : `rocketpool-testnet.public.dappnode`, }; } diff --git a/build/api/src/index.ts b/build/api/src/index.ts index 3a21cd9..c3c3a7c 100644 --- a/build/api/src/index.ts +++ b/build/api/src/index.ts @@ -102,7 +102,7 @@ async function importKey(validatorPubkey: string): Promise