Chain ID: temp-1 | Node Version: temp1.0.0
https://explorer.nodestake.top/temp
https://restake.nodestake.top/temp
sudo apt update
sudo apt-get install git curl build-essential make jq gcc snapd chrony lz4 tmux unzip bc -y
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
cd $HOME
rm -rf evmos
git clone https://github.com/evmos/evmos.git
cd evmos
git checkout v9.1.0
make install
evmosd version
Replace NodeName with your own moniker.
evmosd init NodeName --chain-id=altruistic-1
curl -Ls https://snapshots.nodestake.top/temp/genesis.json > $HOME/.evmosd/config/genesis.json
curl -Ls https://snapshots.nodestake.top/temp/addrbook.json > $HOME/.evmosd/config/addrbook.json
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
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
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
curl -Ls https://snapshots.nodestake.top/temp/genesis.json > $HOME/.evmosd/config/genesis.json
https://snapshots.nodestake.top/temp/addrbook.json
curl -Ls https://snapshots.nodestake.top/temp/addrbook.json > $HOME/.evmosd/config/addrbook.json
sudo systemctl restart evmosd
journalctl -u evmosd -f
peers=$(curl -s https://snapshots.nodestake.top/temp/peers.txt)
sed -i.bak -e "s/^persistent_peers *=.*/persistent_peers = \"$peers\"/" ~/.evmosd/config/config.toml
sudo systemctl restart evmosd
journalctl -u evmosd -f
sudo systemctl stop evmosd
evmosd unsafe-reset-all --home ~/.evmosd/
evmosd tendermint unsafe-reset-all --home ~/.evmosd/ --keep-addr-book
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'
curl -L https://snapshots.nodestake.top/evmos/wasm.tar.lz4 | lz4 -dc - | tar -xf - -C $HOME/.evmosd
sudo systemctl restart evmosd
journalctl -u evmosd -f
We make the node snapshot every day at 02:00 UTC+0
sudo apt update
sudo apt-get install snapd lz4 -y
sed -i.bak -E "s|^(enable[[:space:]]+=[[:space:]]+).*$|\1false|" ~/.evmosd/config/config.toml
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/
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
sudo systemctl restart evmosd
journalctl -u evmosd -f
If you have any questions, please reach out to our Discord
Chain ID: elystestnet-1 | Node Version: v0.39.0
sudo apt update
sudo apt-get install git curl build-essential make jq gcc snapd chrony lz4 tmux unzip bc -y
rm -rf $HOME/go
sudo rm -rf /usr/local/go
cd $HOME
curl https://dl.google.com/go/go1.22.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
cd $HOME
rm -rf elys
git clone https://github.com/elys-network/elys
cd elys
git checkout v0.39.0
make install
elysd version
Replace NodeName with your own moniker.
elysd init NodeName --chain-id=elystestnet-1
curl -Ls https://ss-t.elys.nodestake.org/genesis.json > $HOME/.elys/config/genesis.json
curl -Ls https://ss-t.elys.nodestake.org/addrbook.json > $HOME/.elys/config/addrbook.json
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
SNAP_NAME=$(curl -s https://ss-t.elys.nodestake.org/ | egrep -o ">20.*\.tar.lz4" | tr -d ">")
curl -o - -L https://ss-t.elys.nodestake.org/${SNAP_NAME} | lz4 -c -d - | tar -x -C $HOME/.elys
sudo systemctl restart elysd
journalctl -u elysd -f
If you have any questions, please reach out to our Discord
https://rpc-t.elys.nodestake.org
https://api-t.elys.nodestake.org
https://grpc-t.elys.nodestake.org
https://ss-t.elys.nodestake.org/genesis.json
curl -Ls https://ss-t.elys.nodestake.org/genesis.json > $HOME/.elys/config/genesis.json
https://ss-t.elys.nodestake.org/addrbook.json
curl -Ls https://ss-t.elys.nodestake.org/addrbook.json > $HOME/.elys/config/addrbook.json
sudo systemctl restart elysd
journalctl -u elysd -f
peers=$(curl -s https://ss-t.elys.nodestake.org/peers.txt)
sed -i.bak -e "s/^persistent_peers *=.*/persistent_peers = \"$peers\"/" ~/.elys/config/config.toml
sudo systemctl restart elysd
journalctl -u elysd -f
sudo systemctl stop elysd
elysd tendermint unsafe-reset-all --home ~/.elys/ --keep-addr-book
SNAP_RPC="https://rpc-t.elys.nodestake.org: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'
rm -rf ~/.elys/wasm
curl -o - -L https://ss-t.elys.nodestake.org/wasm.tar.lz4 | lz4 -dc - | tar -xf - -C $HOME/.elys
sudo systemctl restart elysd
journalctl -u elysd -f
We make the node snapshot every 12h
sudo apt update
sudo apt-get install snapd lz4 -y
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
SNAP_NAME=$(curl -s https://ss-t.elys.nodestake.org/ | egrep -o ">20.*\.tar.lz4" | tr -d ">")
curl -o - -L https://ss-t.elys.nodestake.org/${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
sudo systemctl restart elysd
journalctl -u elysd -f
Get old Snapshots
If you have any questions, please reach out to our Discord