- Guide
- Addrbook
- Genesis File
- Peers
- State Sync
- Explorer
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.20.1.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
rm -rf elys
git clone https://github.com/elys-network/elys elys
cd elys
git checkout v0.29.26
make install
elysd version
Initialize Node
elysd init NodeName --chain-id=elystestnet-1
elysd config chain-id elystestnet-1
elysd config keyring-backend os
Download Genesis File
curl -Ls https://files.nomadvalidator.com/elys-t/genesis.json > $HOME/.elys/config/genesis.json
Download Addrbook File
curl -Ls https://files.nomadvalidator.com/elys-t/addrbook.json > $HOME/.elys/config/addrbook.json
Create Service Daemon
sudo tee /etc/systemd/system/elysd.service > /dev/null <<EOF
[Unit]
Description=elysd Daemon
After=network-online.target
[Service]
User=$USER
ExecStart=$(which elysd) start
Restart=always
RestartSec=3
LimitNOFILE=65535
[Install]
WantedBy=multi-user.target
EOF
sudo systemctl daemon-reload
sudo systemctl enable elysd
Start Node
sudo systemctl restart elysd
journalctl -u elysd -f
Download Addrbook File
curl -Ls https://files.nomadvalidator.com/elys-t/addrbook.json > $HOME/.elys/config/addrbook.json
Restart Node
sudo systemctl restart elysd
journalctl -u elysd -f
Download Genesis File
curl -Ls https://files.nomadvalidator.com/elys-t/genesis.json > $HOME/.elys/config/genesis.json
Set Peers
peers=$(curl -s https://files.nomadvalidator.com/elys-t/peers.txt)
sed -i.bak -e "s/^persistent_peers *=.*/persistent_peers = "$peers"/" ~/.elys/config/config.toml
Restart Node
sudo systemctl restart elysd
journalctl -u elysd -f
Stop Node And Reset
sudo systemctl stop elysd && elysd tendermint unsafe-reset-all --home $HOME/.elys --keep-addr-book
Configure State Sync
SNAP_RPC=https://elys-rpc-testnet.nomadvalidator.com:443 && \
LATEST_HEIGHT=$(curl -s $SNAP_RPC/block | jq -r .result.block.header.height); \
BLOCK_HEIGHT=$((LATEST_HEIGHT - 100)); \
TRUST_HASH=$(curl -s "$SNAP_RPC/block?height=$BLOCK_HEIGHT" | jq -r .result.block_id.hash); \
echo $LATEST_HEIGHT $BLOCK_HEIGHT $TRUST_HASH
sudo systemctl stop elysd && stchaind tendermint unsafe-reset-all --home $HOME/.elysd --keep-addr-book
sed -i.bak -E "s|^(enable[[:space:]]+=[[:space:]]+).*$|\1true| ; \
s|^(rpc_servers[[:space:]]+=[[:space:]]+).*$|\1\"$SNAP_RPC,$SNAP_RPC"| ; \
s|^(trust_height[[:space:]]+=[[:space:]]+).*$|\1$BLOCK_HEIGHT| ; \
s|^(trust_hash[[:space:]]+=[[:space:]]+).*$|\1\"$TRUST_HASH"| ; \
s|^(seeds[[:space:]]+=[[:space:]]+).*$|\1\"\"|" $HOME/.stchaind/config/config.toml
sudo systemctl restart elysd && journalctl -fu elysd -o cat