Skip to content

Commit

Permalink
Merge pull request #9 from dappnode/feature/before_merge_testnet
Browse files Browse the repository at this point in the history
Replace prater by mainnet in urls and package name
  • Loading branch information
mgarciate authored Jul 26, 2023
2 parents 9c7c934 + b3a4f4d commit 0e87022
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 17 deletions.
4 changes: 2 additions & 2 deletions GETTING_STARTED.md
Original file line number Diff line number Diff line change
@@ -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/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.
2 changes: 1 addition & 1 deletion build/api/src/AppConfig.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ class AppConfig {
w3sUrl: `http://web3signer.web3signer${w3sSuffix}.dappnode:9000`,
rpExplorerUrl: `https://${clPrefix}rocketscan.io`,
explorerUrl: `https://${elPrefix}etherscan.io`,
package: isMainnet ? `rocketpool.public.dappnode` : `rocketpool-testnet.public.dappnode`,
package: isMainnet ? `rocketpool.dnp.dappnode` : `rocketpool-testnet.public.dappnode`,
};
}

Expand Down
2 changes: 1 addition & 1 deletion build/ui/src/types/AppConfig.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@ export interface Config {
}

const network = process.env.REACT_APP_NETWORK || "prater";
const apiBaseUrl = network === "mainnet" ? "http://rocketpool.public.dappnode:3000" : "http://rocketpool-testnet.public.dappnode:3000";
const apiBaseUrl = network === "mainnet" ? "http://rocketpool.dappnode:3000" : "http://rocketpool-testnet.public.dappnode:3000";
export default apiBaseUrl;
12 changes: 6 additions & 6 deletions dappnode_package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "rocketpool-testnet.public.dappnode.eth",
"version": "0.1.2",
"name": "rocketpool.dnp.dappnode.eth",
"version": "0.1.1",
"upstreamVersion": "v1.10.0",
"upstreamRepo": "rocket-pool/smartnode-install",
"architectures": ["linux/amd64"],
Expand All @@ -9,20 +9,20 @@
"author": "dappnode",
"categories": ["Developer tools"],
"links": {
"ui": "http://rocketpool-testnet.public.dappnode/",
"ui": "http://rocketpool.dappnode/",
"homepage": "https://rocketpool.net/"
},
"globalEnvs": [
{
"envs": ["EXECUTION_CLIENT_PRATER", "CONSENSUS_CLIENT_PRATER"],
"services": ["rocketpool-testnet.public.dappnode.eth"]
"envs": ["EXECUTION_CLIENT_MAINNET", "CONSENSUS_CLIENT_MAINNET"],
"services": ["rocketpool.dnp.dappnode.eth"]
}
],
"backup": [
{
"name": "data",
"path": "/rocketpool/data",
"service": "rocketpool-testnet.public.dappnode.eth"
"service": "rocketpool.dnp.dappnode.eth"
}
],
"license": "GLP-3.0"
Expand Down
12 changes: 6 additions & 6 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
version: "3.4"
services:
rocketpool-testnet.public.dappnode.eth:
image: "rocketpool-testnet.public.dappnode.eth:0.1.0"
rocketpool.dnp.dappnode.eth:
image: "rocketpool.dnp.dappnode.eth:0.1.0"
build:
context: ./build
args:
UPSTREAM_VERSION: v1.10.0
NETWORK: prater
NETWORK: mainnet
volumes:
- "rocketpool-testnet:/rocketpool"
- "rocketpool:/rocketpool"
environment:
- NETWORK=prater
- NETWORK=mainnet
- WALLET_PASSWORD=
- EXTRA_OPTS=
restart: unless-stopped
volumes:
rocketpool-testnet: {}
rocketpool: {}
2 changes: 1 addition & 1 deletion setup-wizard.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ fields:
target:
type: environment
name: WALLET_PASSWORD
service: rocketpool-testnet.public.dappnode.eth
service: rocketpool.dnp.dappnode.eth
title: Wallet password
secret: true
required: true
Expand Down

0 comments on commit 0e87022

Please sign in to comment.