top of page

Rocketpool Beta Pyrmont Testnet: Part 1 [Installation guide and various files and folders on server]

Updated: Mar 15, 2021

So after Medalla testnet we have the Pyrmont testnet. This time we will run 4 validators as last time during Medalla testnet due to finality issue it has been requested not to run more than 2 validators in Pyrmont testnet.

In part1 we will go through the node setup, performance and analysis. Logs of Ethereum chains and validators. We will go through various files and folder of the node server. We will cover some important arguments/commands essential to run the server. For full list of the commands refer rocket pool official documentation here. In part2 we will see how to exit the validators and withdraw your funds. We will also see how to clean the Eth2 chain data only and get ready for the next testnet, which will be the last rocket pool beta testnet on tokenomics.

First let's check which clients we are using. Type the following command to check that:

[ rocket@localhost:~$ cat ~/.rocketpool/settings.yml ]

You can see from the screen shot below that we are using eth1:client:geth and eth2:client:lighthouse. We are using the same clients as we did in the Medalla testnet.


The folder ".rocketpool" has been created after we have installed the Rocket Pool Smart Node Package from github. The guide to setup the node is provided in their official documentation or from medium written by Jake Pospischil, one of the team member of Rocketpool.

Right now Rocketpool supports only two clients Prysm and Lighthouse. May be in future with the mainnet launch they will provide the other two clients - Teku and Nimbus. You can go through the validator clients on Eth2 official launch pad website here.

We will use only commands necessary to setup and run the node server. For full details of all the commands refer their official documentation here.

You can also refer 'command reference' from their official documentation here.

We will be using Rocketpool Smart Node Client version 0.0.9 for this testnet and will update it periodically as when required. Rocket Pool smart nodes are not upgraded automatically. As ethereum client updates may contain breaking changes and prevent validators from working, node operators need to be aware of Rocket Pool smart node updates, and apply them manually. Node operators are encouraged to read the changelogs of the relevant repositories. The Eth1 and Eth2 client updates are also updated in the Rocketpool Smart Node client periodically. So always use the latest verion. You can check the Rocketpool Smart Node client latest releases on github here. For upgrading your Rocketpool Smart Node client refer their official documentation here.

Now let's check which Rocketpool Smart Node client version we are using through CLI on server. Use command [ rocket@localhost:~$ rocketpool service cersion ] to see which version you are using. The output [ rocket pool client version 0.0.9 ] and [ rocketpool service version 0.0.9 ] tells that we are using version 0.0.9.

In regard to the hardware requirements it is recommended to follow the following setup:

OS: Ubuntu 20.04 LTS

CPU: Minimum 4 core with passmark score 5000 or better.

RAM: min 16 GB recommended

Storage: 1 TB SSD

PSU: Corsair HX series, platinum category.

CPU generally is not that important while running a node. It is mostly required while synchronizing the node or chains - eth1 and eth2 chains.

You can use 8 gb ram but it is found that while synchronizing the system gets hangs often till it gets synchronized. Once it's synchronized it will run smooth but you cannot add more peers. So 16 gb ram is recommended.

Server psu's are meant to be used 24/7 but creates loud noises due to which you cannot keep your server in your room. So for home server it is recommended to use Corsair HX series, platinum category psu's. Choose psu after calculating the total wattage of your system. There is no harm is using psu whose wattage is more than that required. For choosing psu you can refer my gpu mining blog here.

For details on hardware set up you can refer beaconchain website here or you can refer rocket pool's official documentation here.

For installation guide you can refer their official documentation or guide prepared by Jake Pospischil for the testnet beta here.

Now let's check rocketpool service stats. Use command [ rocket@localhost:~$ rocketpool service stats ]

You can see the cpu and memory usage of various components. The cpu and memory usage of eth2 chain is more than that of eth1 chain.


Now lets check the eth1 chain logs. Use command [ rocket@localhost:~$ rocketpool service logs eth1 ]

You can see the eth1 chain is in the synchronized state as no mention of 'time left to get sync' is there. Until and unless eth1 get sync you won't get the wallet status. We are using geth as eth1 client . We have two options for eth1 client, geth and infura. We didn't choose Infura as it is 3rd party and requires registration process to go through. So we opted for the good old geth client.

Now let's check the eth2 chain logs. Use command [ rocket@localhost:~$ rocketpool service logs eth2 ]

You can see the eth2 chain is in the sync state as no mention of time is there. Among the four eth2 clients: Lighthouse, Prysm, Teku and Nimbus we have chosen Lighthouse client as it is more stable than the other three and requires less time to get synchronize. Right now rocketpool is offering Lighthouse and Prysm clients. They are planning to introduce one more client in their last testnet on tokenomics. With mainnet launch they are planning to introduce all the four clients.

Now let's check the validators logs. In the last testnet Medalla, I didn't show you the validators logs. Use command [ rocket@localhost:~$ rocketpool service logs validator ]

You can see I'm running four validators and all are active and making attestations.

Now let's check the node status. Use command [ rocket@localhost:~$ rocketpool node status ]

You can see that the node has a balance of 208.031439 ETH and 0.000000 nETH. The node is registered with Rocket Pool with a timezone location of India/Mumbai. The node has a total of 4 minipools and all 4 are staking.

Now let's check the minipool status. Use command [ rocket@localhost:~$ rocketpool minipool status ]. You can see the details of the four minipools. Now the expected rewards of the first minipool is 16.226532 ETH and validator balance is 32.378620. My 16 ETH is paired with another 16 ETH from the deposit pool to form 32 ETH validator. How the rewards will be distributed between the two will be discussed in the next and last testnet. The details about rewards and tokenomics will be discussed in the next blog with rocketpool last beta testnet based on tokenomics.

Now on the beacon chain website you can see all the four validators are active. You can also see the proposal history of all the validators. You can also see the total ETH/income earned by running all the four validators.

Here you can see each validator details. Balance, last attestaion, proposal made and income from last 7 days.

On beacon chain website you can see the validator balance of 32 Eth and and on server side you can see both expected rewards of my 16 ETH and validator balance of 32 ETH.

Now let's go through various files and folders created after running the rocket pool smart node client. Use command [ rocket@localhost:~$ ls -a ] get all the hidden folders. You can see '.rocketpool' folder. which has been created after running the RP smart node client. Now we will explore all the files and folders in it.

Based on your OS chose the command to install the smart node client. As we are using Ubuntu so we opt for Linux (wget). Use command [ mkdir -p ~/bin && wget https://github.com/rocket-pool/smartnode-install/releases/latest/download/rocketpool-cli-linux-amd64 -O ~/bin/rocketpool && chmod +x ~/bin/rocketpool ] .

You can refer medium guide by Jake here.


These are the smart node packages that we are installing. You can refer github pages here or here.


Now let's explore the files and folders. Now follow the following commands:

[ rocket@localhost:~$ cd .rocketpool ]

[ rocket@localhost:~/.rocketpool$ ls ]

[ chains config.yml data docker-compose.yml settings.yml ]

[ rocket@localhost:~$ cd chains ]

[ rocket@localhost:~/.rocketpool/chains$ ls ]

[ eth1 eth2 ]

[ rocket@localhost:~/.rocketpool/chains$ cd eth1 ]

[ rocket@localhost:~/.rocketpool/chains/eth1$ ls ]

[ start-node.sh ]

[ rocket@localhost:~/.rocketpool/chains/eth1$ cd .. ]

[ rocket@localhost:~/.rocketpool/chains$ ls ]

[ eth1 eth2 ]

[ rocket@localhost:~/.rocketpool/chains$ cd eth2 ]

[ rocket@localhost:~/.rocketpool/chains/eth2$ ls ]

[ start-beacon.sh start-validator.sh ]

[ rocket@localhost:~/.rocketpool/chains/eth2$ cd .. ]

[ rocket@localhost:~/.rocketpool/chains$ cd .. ]

[ rocket@localhost:~/.rocketpool$ ls ]

[ chains config.yml data docker-compose.yml settings.yml ]


[ rocket@localhost:~/.rocketpool$ nano config.yml ]

Here you can see the details of the following are provided:

Storage address

Smartnode

Chains: eth1 : eth2

[ rocket@localhost:~/.rocketpool$ cd data ]

[ rocket@localhost:~/.rocketpool/data$ ls ]

[ password validators wallet ]

Before you register with Rocket Pool, you’ll need to create a wallet to hold your node account and validator keys. Use command { rocket@localhost:~$ rocketpool wallet init ]

You can refer Jakes guide on medium here or follow the official documentation here.

If you already have wallet in Metamask then you can recover your wallet on node. Use command [ rocket@localhost:~$ rocketpool wallet recover ]. You will be prompted to put the 24 words mnemonic phrase and create new password. Once eth1 chain is sync you can get your wallet status by using command [ rocket@localhost:~$ rocketpool wallet status ].

You can also see how I recovered my wallet on a different server here. While trying to recover my wallet on new server I was not able to do so due to some bug.


[ rocket@localhost:~/.rocketpool/data$ cd .. ]

[ rocket@localhost:~/.rocketpool$ ls ]

[ chains config.yml data docker-compose.yml settings.yml ]


[ rocket@localhost:~/.rocketpool$ nano docker-compose.yml ]

Here you can customize the Rocket Pool service : Customize storage location, Use external eth1 and eth2 clients, Customize eth1 and eth2 client options. For details you can refer the official documentation here. You can also run Rocket Pool service outside docker. For details see official documentation here.



[ rocket@localhost:~/.rocketpool$ ls ]

[ chains config.yml data docker-compose.yml settings.yml ]

[ rocket@localhost:~/.rocketpool$ nano settings.yml ]

You can see or customize which clients you are using for eth1 and eth2 chains. You can also customize using command [ rocket@localhost:~$ rocketpool service config ]. Make sure you stop the Rocket Pool service [ rocket@localhost:~$ rocketpool service stop ] before re-configuring it.


Now on beacon chain website you can see that all the four validators are active and proposal history made. You can also see the total income of all the four validators.

Here you can see the details of the individual validator. Balance, active status, activation date, time of last attestaion, proposal made by each validator and income of last 7 days. One thing here is to be noted that when one proposal is made by the validator the reward it gets is more than that when one attestation is made by the same validator.


Now let's see the details of one validator with index 103860.

Click on the 'Income' tab to get the daily income of that validator.


Click on the 'Proposal' tab to get the details of the proposal history of that validator.


Click on the 'Blocks' tab to get the details of the blocks proposed by that validator.


Click on the 'Attestations' tab to get the details of the attestations made by that validator.

Click on 'Deposit' tab to see the deposits made to the Eth1 deposit contract.

After 24 days the validator with index no. was ranked 8th on beacon chain website.

Annual percentage rate APR was 11%.

On validators leader board you can see the rank of Prime Stake Pool [PSP] among other validators. You can also search 'PSP'or 'Prime Stake Pool' in the search bar to get the ranks of all the four validators.

Right now on mainnet the APR is 9.3% for the staked Ether. You can also get the current APR from their official Ethereum launch pad website here.

You can see the youtube video here.









Recent Posts

See All
bottom of page