Installation

Hardware Requirements

Components Minimum Requirements CPU 4

RAM 8+ GB

STORAGE +200 GB SSD

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

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 Fiamma website faucet

Join the fiamma Discord Server! Discord $request fiamma-address

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

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