Server:

official requirements 8 CPU / 16 GB RAM / 500 GB SSD


Installation the node

Server preparing

sudo apt update && sudo apt upgrade -y && \\
sudo apt install curl tar wget clang pkg-config libssl-dev libleveldb-dev jq build-essential bsdmainutils git make ncdu htop screen unzip bc fail2ban htop -y

Untitled

Install Go

ver="1.20.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:$HOME/go/bin" >> $HOME/.bash_profile && \\
source $HOME/.bash_profile && \\
go version

Download the binary file

cd $HOME
git clone <https://github.com/archway-network/archway.git>
cd archway
git checkout v0.6.0
make install

Untitled

Initialize node (change “f5nodes” when configuring)

archwayd init f5nodes --chain-id constantine-3
archwayd config chain-id constantine-3

Untitled

Create wallet for node (change “f5nodes” when configuring)

archwayd keys add **f5nodes**

Untitled