πŸ”Œ Installation

πŸ’» Hardware Requirements

Components
Minimum Requirements

CPU

4

RAM

8+ GB

STORAGE

+200 GB SSD

1️⃣ Installation packages and dependencies

sudo apt -q update
sudo apt -qy install curl git jq lz4 build-essential
sudo apt -qy upgrade
sudo apt-get update && apt-get install -y libssl-dev

➑️ Go Installation

cd $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"
[ ! -f ~/.bash_profile ] && touch ~/.bash_profile
echo "export PATH=$PATH:/usr/local/go/bin:~/go/bin" >> ~/.bash_profile
source $HOME/.bash_profile
[ ! -d ~/go/bin ] && mkdir -p ~/go/bin

2️⃣ Install node

➑️ Create a service

➑️ Let's activate it

➑️ Initialize the node

➑️ Genesis addrbook

➑️ Port

➑️ Peers and Seeds

➑️ Pruning

➑️ Gas Settings

➑️ Indexer

➑️ Snap (soon)

➑️ Let's get started

➑️ Log Command

➑️ Create wallet

don't forget to backup the wallet words!

➑️ Import wallet

➑️ Faucet

Faucet for Fiammawebsite faucet

LogoFaucet for Fiamma

➑️ Create Validator

Reminder: You can't create a validator without Sync. You must have to catch the latest block.

The code below will give you pubkey. Save it. You'll need it.

Copy the below directly. Make the changes and save (ctrl+x, y, enter).

➑️ Delegate to Yourself

Find your valoper address with the code below

Or

➑️ Edit Validator

➑️ Complete deletion

➑️ Block check

  • Your node height - the current block of your node

  • Network height - the last block of the network

  • Blocks left - how many blocks your node has left to sync.

Last updated