Pell

Pell node guide

Pell Node Setup Guide

1. Install Dependencies

Run the following commands to update your system and install necessary dependencies:

shCopyEditsudo apt update && sudo apt upgrade -y
sudo apt install curl git wget htop tmux build-essential jq make lz4 gcc unzip -y

2. Install Go

shCopyEditcd $HOME
VER="1.22.3"
wget "https://golang.org/dl/go$VER.linux-amd64.tar.gz"
sudo rm -rf /usr/local/go
sudo tar -C /usr/local -xzf "go$VER.linux-amd64.tar.gz"
rm "go$VER.linux-amd64.tar.gz"
echo "export PATH=$PATH:/usr/local/go/bin:~/go/bin" >> ~/.bash_profile
source $HOME/.bash_profile
mkdir -p ~/go/bin

3. Set Environment Variables

4. Download Binary and WASMVM

5. Configure and Initialize Node

6. Download Genesis and Addrbook

7. Set Seeds and Peers

8. Configure Custom Ports

9. Set Pruning and Gas Price

10. Create and Start System Service

11. Check Sync Status

12. Create Wallet

13. Save Wallet and Validator Address

14. Create Validator

15. Security & Firewall

16. Delete Node

Last updated