πŸ”Œ Installation

Install dependencies Required

sudo apt update && sudo apt upgrade -y && sudo apt install curl tar wget clang pkg-config libssl-dev jq build-essential bsdmainutils git make ncdu gcc git jq chrony liblz4-tool -y

Install go

We are gonna use GO Version 1.21.13 If you already have GO installed you can skip this

ver="1.22.10"
cd $HOME
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:$HOME/go/bin" >> ~/.bash_profile
source ~/.bash_profile
go version

Install binary

cd $HOME
git clone https://github.com/atomone-hub/atomone
cd atomone
git checkout v3.0.1
make install

Init Change MONIKER Name

Download genesis and addrbook

Configure Seeds and Peers

Config pruning

Indexer Off

Set minimum gas price

create service file and start node

  • Start Node

Last updated