Here's the step-by-step guide on running an incentivized node. With only a handful of node runners currently, this is your chance to get ahead.
They've raised $15M in funding rounds and are backed by top VCs like @BinanceLabs. Additionally, 10% of the supply is allocated to the community.
This is the continuation of the Twitter post.
I believe you have already downloaded the Terminus app or software, and your VPS is ready.
Open the Terminus app or software and click on "new host". Paste the IP address you obtained from pq hosting in the “IP or Hostname“ box, then enter "root" as the username. Use the password you set in the PQ hosting dashboard when you were getting your VPS.
If you're confused about your VPS password, navigate to your dashboard and click on the three dots next to the purchased VPS. Then, select "to panel."
You will be taken to the next page. Once there, click on the three dots and select "Change password." This will allow you to change your VPS password.
Once you are connected to your VPS, you will see something similar to this on your screen.
Now, 50% of the work is completed, All you need to do is paste each command individually, and your node will be operational.
First, let install docker using following command.
# Update APT package index
sudo apt update
# Install Docker
sudo apt install -y docker-ce
You can verify if docker is installed or not by:
sudo docker --version
You will see output similar to the following, Docker version 27.5.1, build 9f9e405. This indicates that the installation was successful.
Now, start and enable docker service in your VPS using following command:
sudo systemctl start docker
sudo systemctl enable docker
Now, After this paste this code:
docker pull privasea/acceleration-node-beta:latest
Let’s create directory and navigate to it now:
mkdir -p ~/privasea/config && cd ~/privasea
Then run the following command and the program will prompt you to enter a password, please remember this password for future use.
docker run --rm -it -v "$HOME/privasea/config:/app/config" privasea/acceleration-node-beta:latest ./node-calc new_keystore
Now, we need to move keystore file to a new file.
mv $HOME/privasea/config/UTC--* $HOME/privasea/config/wallet_keystore
Then simply go over here and connect your wallet and click on “set one up now!”
Once you reach to next page, enter your unique name, set commission as 1% and enter your node address that we got in last step and told you to save somewhere safe.
READ THIS CAREFULLY: In the command below, replace "YOUR_KEYSTONE_PASSWORD" with the password you set earlier.
docker run -d --name privanetix-node -v "$HOME/privasea/config:/app/config" -e KEYSTORE_PASSWORD=YOUR_KEYSTONE_PASSWORD privasea/acceleration-node-beta:latest
That's it. Our node setup is complete, and your node will start running.
After a moment, your status will change from "Offline" to "Online."
Once your node status is online, you can stake your $TPRAI by going here.
Note: You can get 1 $TPRAI from the faucet by clicking on “Privasea DeepSea Beta faucet” in the top right.
If you’re not seeing $TPRAI in your wallet, add it to your wallet using this CA:
0xe999b25Bc133C913b83D69aEC73ea47c1d451315
If you're receiving a "stake failed" error, set the gas fee as indicated below, and it should succeed.
Keep your node running and you will be able to claim rewards once in a while.
That’s all for now!