Skip to main content

Installation

Install Dependencies:

sudo apt update && sudo apt upgarade -y
sudo apt-get install git curl build-essential make jq gcc snapd chrony lz4 tmux unzip make bc -y

Install GO: (amd64 - x86)

rm -rf $HOME/go
sudo rm -rf /usr/local/go
cd $HOME
curl https://dl.google.com/go/go1.23.4.linux-amd64.tar.gz | sudo tar -C/usr/local -zxvf -
cat <<'EOF' >>$HOME/.bash_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/.bash_profile
go version

Set variables:

echo "export SAFRO_PORT="42"" >> $HOME/.bash_profile
source $HOME/.bash_profile

Install binary:

cd $HOME
git clone https://github.com/Safrochain-Org/safrochain-node.git
cd safrochain-node
git checkout release/v0.1.0
make install
safrochaind version

Config & init chain:

safrochaind init Node39-Guide --chain-id safro-testnet-1
sed -i "s/chain-id = .*/chain-id = \"safro-testnet-1\"/" $HOME/.safrochain/config/client.toml
sed -i "s/keyring-backend = .*/keyring-backend = \"os\"/" $HOME/.safrochain/config/client.toml
sed -i "s/node = .*/node = \"tcp:\/\/localhost:${SAFRO_PORT}657\"/" $HOME/.safrochain/config/client.toml

Custom ports:

sed -i.bak -e "s%:1317%:${SAFRO_PORT}317%g;
s%:8080%:${SAFRO_PORT}080%g;
s%:9090%:${SAFRO_PORT}090%g;
s%:9091%:${SAFRO_PORT}091%g;
s%:8545%:${SAFRO_PORT}545%g;
s%:8546%:${SAFRO_PORT}546%g;
s%:6065%:${SAFRO_PORT}065%g" $HOME/.safrochain/config/app.toml
sed -i.bak -e "s%:26658%:${SAFRO_PORT}658%g;
s%:26657%:${SAFRO_PORT}657%g;
s%:6060%:${SAFRO_PORT}060%g;
s%:26656%:${SAFRO_PORT}656%g;
s%^external_address = \"\"%external_address = \"$(wget -qO- eth0.me):${SAFRO_PORT}656\"%;
s%:26660%:${SAFRO_PORT}660%g" $HOME/.safrochain/config/config.toml

Set min gas:

sed -i 's|minimum-gas-prices =.*|minimum-gas-prices = "0.001usaf"|g' $HOME/.safrochain/config/app.toml

Set indexer:

sed -i -e "s/^indexer *=.*/indexer = \"null\"/" $HOME/.safrochain/config/config.toml

Pruning:

sed -i -e "s/^pruning *=.*/pruning = \"custom\"/" $HOME/.safrochain/config/app.toml 
sed -i -e "s/^pruning-keep-recent *=.*/pruning-keep-recent = \"100\"/" $HOME/.safrochain/config/app.toml
sed -i -e "s/^pruning-interval *=.*/pruning-interval = \"50\"/" $HOME/.safrochain/config/app.toml

Download Genesis & addressbook:

curl -Ls https://file3.node39.top/Testnet/Safro/genesis.json > $HOME/.safrochain/config/genesis.json
curl -Ls https://file3.node39.top/Testnet/Safro/addrbook.json > $HOME/.safrochain/config/addrbook.json

Peers:

peers=""
sed -i.bak -e "s/^persistent_peers *=.*/persistent_peers = \"$peers\"/" $HOME/.safrochain/config/config.toml

Create Service:

sudo tee /etc/systemd/system/safrochaind.service > /dev/null <<EOF
[Unit]
Description=safrochaind Service
After=network-online.target

[Service]
User=$USER
ExecStart=$(which safrochaind) start
Restart=always
RestartSec=3
LimitNOFILE=65535

[Install]
WantedBy=multi-user.target
EOF
sudo systemctl daemon-reload
sudo systemctl enable safrochaind

Download snapshot: Here.

Check sync:

(False -> Done)

safrochaind status 2>&1 | jq .SyncInfo