RPC https://evmos-rpc.theamsolutions.info | API https://evmos-api.theamsolutions.info
gRPC https://evmos-grpc.theamsolutions.info | JSON RPC https://evmos-jsonrpc.theamsolutions.info
Telegram Bot / Notification service Guide for Validator - LINK
TMKMS Remote signer service - LINK
EVMOS NODE LAUCH VIA DATA SNAPSHOT
Install GO and dependencies HERE
git clone https://github.com/tharsis/evmos.git
cd evmos
ver=$(curl -s https://evmos-rpc.theamsolutions.info/abci_info | jq -r ."result"."response"."version")
git checkout v${ver}
make install
evmosd version --long | head
evmosd config chain-id evmos_9001-2
evmosd init <your_custom_moniker> --chain-id evmos_9001-2
wget -q -O $HOME/.evmosd/config/genesis.json https://archive.evmos.org/mainnet/genesis.json
sha256sum ~/.evmosd/config/genesis.json
#right output : 4aa13da5eb4b9705ae8a7c3e09d1c36b92d08247dad2a6ed1844d031fcfe296c
sudo tee /etc/systemd/system/evmosd.service << EOF
[Unit]
Description=Evmosd Node
After=network.target
#
[Service]
User=$USER
Type=simple
ExecStart=$(which evmosd) start skip checks --x-crisis-skip-assert-invariants
RestartSec=10
Restart=on-failure
LimitNOFILE=65535
#
[Install]
WantedBy=multi-user.target
EOF
sudo systemctl enable evmosd.service
sudo systemctl daemon-reload
DATA SNAPSHOT
#snapshot info check : curl -s https://snapshots.theamsolutions.info | egrep -o ">evmos-snap*.*tar.gz" | tr -d ">"
snap=$(curl -s https://snapshots.theamsolutions.info/ | egrep -o ">evmos-snap*.*tar.gz" | tr -d ">")
sudo systemctl stop evmosd.service
mv $HOME/.evmosd/data/priv_validator_state.json $HOME
wget -P $HOME https://snapshots.theamsolutions.info/${snap} \
&& rm -rf $HOME/.evmosd/data
tar xzf $HOME/${snap} -C $HOME/.evmosd
rm $HOME/${snap}
mv $HOME/priv_validator_state.json $HOME/.evmosd/data/
wget -q -O $HOME/.evmosd/config/addrbook.json https://evmos.theamsolutions.info/addrbook.json
sudo systemctl restart evmosd.service
sudo journalctl -u evmosd.service -f -o cat
STATE SYNC
evmosd tendermint unsafe-reset-all --home $HOME/.evmosd
SNAP_RPC="https://evmos-rpc.theamsolutions.info:443" \
&& LATEST_HEIGHT=$(curl -s $SNAP_RPC/block | jq -r .result.block.header.height) \
&& BLOCK_HEIGHT=$((LATEST_HEIGHT - 10000)) \
&& 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\"|" $HOME/.evmosd/config/config.toml
SEEDS=$(curl -s https://evmos.theamsolutions.info/seeds); \
sed -i "s/^seeds *=.*/seeds = \"$SEEDS\"/;" $HOME/.evmosd/config/config.toml
sudo systemctl restart evmosd.service
sudo journalctl -u evmosd.service -f -o cat
Use command below to switch off your State Sync mode, after node fully synced to avoid problems in future node restarts.
sed -i.bak -E "s|^(enable[[:space:]]+=[[:space:]]+).*$|\1false|" $HOME/.evmosd/config/config.toml
A fully synced node supposed to be ready in 10-30 min, if not, please repeat state sync steps above.
Enjoy.
PEERS & SEEDS
https://evmos.theamsolutions.info/peers
https://evmos.theamsolutions.info/seeds
GOOD LUCK!!!
AM Solutions © Copyright. All rights reserved.