Skip to main content

Testnet

Chain ID: atomone-testnet-1 | Node Version: v1.1.2

Update system and install build dependencies
sudo apt update
sudo apt-get install git curl build-essential make jq gcc snapd chrony lz4 tmux unzip bc -y
Install Go
rm -rf $HOME/go
sudo rm -rf /usr/local/go
cd $HOME
curl https://dl.google.com/go/go1.21.13.linux-amd64.tar.gz | sudo tar -C/usr/local -zxvf -
cat <<'EOF' >>$HOME/.profile
export GOROOT=/usr/local/go
export GOPATH=$HOME/go
export GO111MODULE=on
export PATH=$PATH:/usr/local/go/bin:$HOME/go/bin
EOF
source $HOME/.profile
go version
Download and Install Binaries
cd $HOME
git clone https://github.com/atomone-hub/atomone
cd atomone
git checkout v1.1.2
make install
atomoned version
Initialize Node
atomoned init NodeName --chain-id=atomone-testnet-1
atomoned config chain-id atomone-testnet-1
atomoned config keyring-backend os
Download Genesis File
curl -Ls https://files.nomadvalidator.com/atomone-t/genesis.json > $HOME/.atomone/config/genesis.json
Download Addrbook File
curl -Ls https://files.nomadvalidator.com/atomone-t/addrbook.json > $HOME/.atomone/config/addrbook.json
Create Service Daemon
sudo tee /etc/systemd/system/atomoned.service > /dev/null <<EOF
[Unit]
Description=atomone Daemon
After=network-online.target
[Service]
User=$USER
ExecStart=$(which atomoned) start
Restart=always
RestartSec=3
LimitNOFILE=65535
[Install]
WantedBy=multi-user.target
EOF
sudo systemctl daemon-reload
sudo systemctl enable atomoned
Start Node
sudo systemctl restart atomoned
sudo journalctl -u atomoned -f