Mainnet

Chain ID: temp-1 | Node Version: temp1.0.0

 

https://explorer.nodestake.top/temp

 

 

https://restake.nodestake.top/temp

 

Node Installation Guide

Update system and install build tools

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.19.5.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

Install Node

cd $HOME
rm -rf evmos
git clone https://github.com/evmos/evmos.git
cd evmos
git checkout v9.1.0
make install
evmosd version

Initialize Node

Replace NodeName with your own moniker.

evmosd init NodeName --chain-id=altruistic-1

Download Genesis

curl -Ls https://snapshots.nodestake.top/temp/genesis.json > $HOME/.evmosd/config/genesis.json 

Download addrbook

curl -Ls https://snapshots.nodestake.top/temp/addrbook.json > $HOME/.evmosd/config/addrbook.json

Create Service

sudo tee /etc/systemd/system/evmosd.service > /dev/null <<EOF
[Unit]
Description=evmosd Daemon
After=network-online.target
[Service]
User=$USER
ExecStart=$(which evmosd) start
Restart=always
RestartSec=3
LimitNOFILE=65535
[Install]
WantedBy=multi-user.target
EOF
sudo systemctl daemon-reload
sudo systemctl enable evmosd

Download Snapshot(optional)

SNAP_NAME=$(curl -s https://snapshots.nodestake.top/evmos/ | egrep -o ">20.*\.tar.lz4" | tr -d ">")

curl -o - -L https://snapshots.nodestake.top/evmos/${SNAP_NAME}  | lz4 -c -d - | tar -x -C $HOME/.evmosd

Launch Node

sudo systemctl restart evmosd
journalctl -u evmosd -f

If you have any questions, please reach out to our Discord

 

https://rpc.temp.nodestake.top

 

https://api.temp.nodestake.top

 

https://grpc.temp.nodestake.top

Chain Name: Temp
RPC: https://jsonrpc.temp.nodestake.top/
Chain ID: 0000
Symbol: TEMP
Explorer: 

https://snapshots.nodestake.top/temp/genesis.json

Download Genesis File

curl -Ls https://snapshots.nodestake.top/temp/genesis.json > $HOME/.evmosd/config/genesis.json 

https://snapshots.nodestake.top/temp/addrbook.json

Download Addrbook

curl -Ls https://snapshots.nodestake.top/temp/addrbook.json > $HOME/.evmosd/config/addrbook.json 

Restart Node

sudo systemctl restart evmosd
journalctl -u evmosd -f

Set Peers

peers=$(curl -s https://snapshots.nodestake.top/temp/peers.txt)
sed -i.bak -e "s/^persistent_peers *=.*/persistent_peers = \"$peers\"/" ~/.evmosd/config/config.toml

Restart Node

sudo systemctl restart evmosd
journalctl -u evmosd -f

Stop Node And Reset

sudo systemctl stop evmosd

evmosd unsafe-reset-all --home ~/.evmosd/

evmosd tendermint unsafe-reset-all --home ~/.evmosd/ --keep-addr-book

Configure State Sync

SNAP_RPC="https://rpc-t.evmos.nodestake.top:443"

LATEST_HEIGHT=$(curl -s $SNAP_RPC/block | jq -r .result.block.header.height); \

BLOCK_HEIGHT=$((LATEST_HEIGHT - 1000)); \

TRUST_HASH=$(curl -s "$SNAP_RPC/block?height=$BLOCK_HEIGHT" | jq -r .result.block_id.hash)

echo $LATEST_HEIGHT $BLOCK_HEIGHT $TRUST_HASH

 

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\"\"|" ~/.evmosd/config/config.toml

more ~/.evmosd/config/config.toml | grep 'rpc_servers'

more ~/.evmosd/config/config.toml | grep 'trust_height'

more ~/.evmosd/config/config.toml | grep 'trust_hash'

Download Wasm

curl -L https://snapshots.nodestake.top/evmos/wasm.tar.lz4 | lz4 -dc - | tar -xf - -C $HOME/.evmosd

Restart Node

sudo systemctl restart evmosd
journalctl -u evmosd -f

We make the node snapshot every day at 02:00 UTC+0

Install lz4

sudo apt update

sudo apt-get install snapd lz4 -y

Off State Sync

sed -i.bak -E "s|^(enable[[:space:]]+=[[:space:]]+).*$|\1false|" ~/.evmosd/config/config.toml

Stop Node and Reset Date

sudo systemctl stop evmosd

cp $HOME/.evmosd/data/priv_validator_state.json $HOME/.evmosd/priv_validator_state.json.backup

rm -rf ~/.evmosd/data

evmosd tendermint unsafe-reset-all --home ~/.evmosd/ --keep-addr-book

evmosd unsafe-reset-all --home ~/.evmosd/

Download Snapshot

SNAP_NAME=$(curl -s https://snapshots.nodestake.top/evmos/ | egrep -o ">20.*\.tar.lz4" | tr -d ">")

curl -o - -L https://snapshots.nodestake.top/evmos/${SNAP_NAME}  | lz4 -c -d - | tar -x -C $HOME/.evmosd

mv $HOME/.evmosd/priv_validator_state.json.backup $HOME/.evmosd/data/priv_validator_state.json

Restart Node

sudo systemctl restart evmosd
journalctl -u evmosd -f

If you have any questions, please reach out to our Discord

Testnet

Chain ID: elystestnet-1 | Node Version: v0.27.0

Node Installation Guide

Update system and install build tools

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.5.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

Install Node

cd $HOME

rm -rf elys

git clone https://github.com/elys-network/elys elys

cd elys

git checkout v0.24.0

make install

elysd version

Initialize Node

Replace NodeName with your own moniker.

elysd init NodeName --chain-id=elystestnet-1

Download Genesis

curl -Ls https://ss-t.elys.nodestake.top/genesis.json > $HOME/.elys/config/genesis.json 

Download addrbook

curl -Ls https://ss-t.elys.nodestake.top/addrbook.json > $HOME/.elys/config/addrbook.json

Create Service

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

Download Snapshot(optional)

SNAP_NAME=$(curl -s https://ss-t.elys.nodestake.top/ | egrep -o ">20.*\.tar.lz4" | tr -d ">")

curl -o - -L https://ss-t.elys.nodestake.top/${SNAP_NAME}  | lz4 -c -d - | tar -x -C $HOME/.elys

Launch Node

sudo systemctl restart elysd
journalctl -u elysd -f

If you have any questions, please reach out to our Discord

 

https://rpc-t.elys.nodestake.top

 

https://api-t.elys.nodestake.top

 

https://grpc-t.elys.nodestake.top

https://ss-t.elys.nodestake.top/genesis.json

Download Genesis File

curl -Ls https://ss-t.elys.nodestake.top/genesis.json > $HOME/.elys/config/genesis.json 

https://ss-t.elys.nodestake.top/addrbook.json

Download Addrbook

curl -Ls https://ss-t.elys.nodestake.top/addrbook.json > $HOME/.elys/config/addrbook.json 

Restart Node

sudo systemctl restart elysd
journalctl -u elysd -f

Set Peers

peers=$(curl -s https://ss-t.elys.nodestake.top/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 ~/.elys/ --keep-addr-book

Configure State Sync

SNAP_RPC="https://rpc-t.elys.nodestake.top:443"

LATEST_HEIGHT=$(curl -s $SNAP_RPC/block | jq -r .result.block.header.height); \

BLOCK_HEIGHT=$((LATEST_HEIGHT - 1000)); \

TRUST_HASH=$(curl -s "$SNAP_RPC/block?height=$BLOCK_HEIGHT" | jq -r .result.block_id.hash)

echo $LATEST_HEIGHT $BLOCK_HEIGHT $TRUST_HASH

 

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\"\"|" ~/.elys/config/config.toml

more ~/.elys/config/config.toml | grep 'rpc_servers'

more ~/.elys/config/config.toml | grep 'trust_height'

more ~/.elys/config/config.toml | grep 'trust_hash'

Restart Node

sudo systemctl restart elysd
journalctl -u elysd -f

We make the node snapshot every 6h

Install lz4

sudo apt update

sudo apt-get install snapd lz4 -y

Off State Sync

sed -i.bak -E "s|^(enable[[:space:]]+=[[:space:]]+).*$|\1false|" ~/.elys/config/config.toml

Stop Node and Reset Date

sudo systemctl stop elysd

cp $HOME/.elys/data/priv_validator_state.json $HOME/.elys/priv_validator_state.json.backup

rm -rf ~/.elys/data

elysd tendermint unsafe-reset-all --home ~/.elys/ --keep-addr-book

Download Snapshot

SNAP_NAME=$(curl -s https://ss-t.elys.nodestake.top/ | egrep -o ">20.*\.tar.lz4" | tr -d ">")

curl -o - -L https://ss-t.elys.nodestake.top/${SNAP_NAME}  | lz4 -c -d - | tar -x -C $HOME/.elys

mv $HOME/.elys/priv_validator_state.json.backup $HOME/.elys/data/priv_validator_state.json

Restart Node

sudo systemctl restart elysd
journalctl -u elysd -f

If you have any questions, please reach out to our Discord