Skip to content

Commit bdb3a40

Browse files
committed
Add MAINNET changes
1 parent 5a1bc2b commit bdb3a40

File tree

7 files changed

+18
-21
lines changed

7 files changed

+18
-21
lines changed

GETTING_STARTED.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
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.
22

3-
Start with Rocket Pool at [http://rocketpool-testnet.public.dappnode/](http://rocketpool-testnet.public.dappnode/)
3+
Start with Rocket Pool at [http://rocketpool.dappnode/](http://rocketpool.dappnode/)
44

55
ℹ️ Rocket Pool supports three different Execution clients: Geth, Besu, and Nethermind.
66

77
ℹ️ Rocket Pool supports five Consensus clients: Lighthouse, Lodestar, Nimbus, Prysm, and Teku.
88

9-
⚠️ 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.
9+
⚠️ 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.

build/api/src/AppConfig.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ class AppConfig {
2626
w3sUrl: `http://web3signer.web3signer${w3sSuffix}.dappnode:9000`,
2727
rpExplorerUrl: `https://${networkPrefix}rocketscan.io`,
2828
explorerUrl: `https://${networkPrefix}etherscan.io`,
29-
package: isMainnet ? `rocketpool.public.dappnode` : `rocketpool-testnet.public.dappnode`,
29+
package: isMainnet ? `rocketpool.dnp.dappnode` : `rocketpool-testnet.public.dappnode`,
3030
};
3131
}
3232

build/api/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ async function importKey(validatorPubkey: string): Promise<ImportKeyResponseData
102102
keystores: [keystoreJson],
103103
passwords: [password],
104104
tags: ["rocketpool"],
105-
feeRecipients: ["0xa347c391bc8f740caba37672157c8aacd08ac567"],
105+
feeRecipients: ["0xd4e96ef8eee8678dbff4d535e033ed1a4f7605b7"],
106106
});
107107
}
108108

build/ui/src/types/AppConfig.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@ export interface Config {
99
}
1010

1111
const network = process.env.REACT_APP_NETWORK || "holesky";
12-
const apiBaseUrl = network === "mainnet" ? "http://rocketpool.public.dappnode:3000" : "http://rocketpool-testnet.public.dappnode:3000";
12+
const apiBaseUrl = network === "mainnet" ? "http://rocketpool.dappnode:3000" : "http://rocketpool-testnet.public.dappnode:3000";
1313
export default apiBaseUrl;

dappnode_package.json

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"name": "rocketpool-testnet.public.dappnode.eth",
3-
"version": "0.1.6",
2+
"name": "rocketpool.dnp.dappnode.eth",
3+
"version": "0.1.4",
44
"upstreamVersion": "v1.13.7",
55
"upstreamRepo": "rocket-pool/smartnode-install",
66
"architectures": ["linux/amd64"],
@@ -9,24 +9,21 @@
99
"author": "dappnode",
1010
"categories": ["Developer tools"],
1111
"links": {
12-
"ui": "http://rocketpool-testnet.public.dappnode/",
12+
"ui": "http://rocketpool.dappnode/",
1313
"homepage": "https://rocketpool.net/"
1414
},
1515
"globalEnvs": [
1616
{
17-
"envs": ["EXECUTION_CLIENT_HOLESKY", "CONSENSUS_CLIENT_HOLESKY"],
18-
"services": ["rocketpool-testnet.public.dappnode.eth"]
17+
"envs": ["EXECUTION_CLIENT_MAINNET", "CONSENSUS_CLIENT_MAINNET"],
18+
"services": ["rocketpool.dnp.dappnode.eth"]
1919
}
2020
],
2121
"backup": [
2222
{
2323
"name": "data",
2424
"path": "/rocketpool/data",
25-
"service": "rocketpool-testnet.public.dappnode.eth"
25+
"service": "rocketpool.dnp.dappnode.eth"
2626
}
2727
],
28-
"dependencies": {
29-
"web3signer-holesky.dnp.dappnode.eth": "latest"
30-
},
3128
"license": "GLP-3.0"
3229
}

docker-compose.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
version: "3.4"
22
services:
3-
rocketpool-testnet.public.dappnode.eth:
4-
image: rocketpool-testnet.public.dappnode.eth:0.1.0
3+
rocketpool.dnp.dappnode.eth:
4+
image: rocketpool.dnp.dappnode.eth:0.1.0
55
build:
66
context: ./build
77
args:
88
UPSTREAM_VERSION: v1.13.7
9-
NETWORK: holesky
9+
NETWORK: mainnet
1010
volumes:
11-
- rocketpool-testnet:/rocketpool
11+
- rocketpool:/rocketpool
1212
environment:
13-
- NETWORK=holesky
13+
- NETWORK=mainnet
1414
- WALLET_PASSWORD=
1515
- EXTRA_OPTS=
1616
restart: unless-stopped
1717
volumes:
18-
rocketpool-testnet: {}
18+
rocketpool: {}

setup-wizard.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ fields:
44
target:
55
type: environment
66
name: WALLET_PASSWORD
7-
service: rocketpool-testnet.public.dappnode.eth
7+
service: rocketpool.dnp.dappnode.eth
88
title: Wallet password
99
secret: true
1010
required: true

0 commit comments

Comments
 (0)