RPC https://rpc.evmos-test.theamsolutions.info:443 | API https://api.evmos-test.theamsolutions.info:443
gRPC : grpc.evmos-test.theamsolutions.info:9290
Official docs HERE
GUIDE
cd $HOME
git clone https://github.com/tharsis/evmos.git
cd evmos
ver=$(curl -s https://rpc.evmos-test.theamsolutions.info:443/abci_info | jq -r ."result"."response"."version")
git checkout v${ver}
make install
evmosd config chain-id evmos_9000-4
evmosd init <node-name> --chain-id evmos_9000-4
wget -q -O $HOME/.evmosd/config/genesis.json https://evmos.theamsolutions.info/testnet-genesis.json \
&& sha256sum ~/.evmosd/config/genesis.json
#Should be : 5c8c6e7f3c9017dc6ad6a3a72e436bde1163470dbfa294b593d0e7bc8e3e7d08
sudo tee /etc/systemd/system/evmosd.service << EOF
[Unit]
Description=Evmosd-Testnet
After=network.target
#
[Service]
User=$USER
Type=simple
ExecStart=$(which evmosd) start skip checks --x-crisis-skip-assert-invariants
Restart=on-failure
RestartSec=20
LimitNOFILE=65535
#
[Install]
WantedBy=multi-user.target
EOF
DATA SNAPSHOT
#check snapshot height : curl -s http://94.250.203.6:90 | egrep -o ">evmos-test-snap*.*tar" | tr -d ">"
snap=$(curl -s http://94.250.203.6:90 | egrep -o ">evmos-test-snap*.*tar" | tr -d ">")
sudo systemctl stop evmosd
mv $HOME/.evmosd/data/priv_validator_state.json $HOME
rm-rf $HOME/.evmosd/data
wget -P $HOME http://94.250.203.6:90/${snap}
tar xf $HOME/${snap} -C $HOME/.evmosd
mv $HOME/priv_validator_state.json $HOME/.evmosd/data
rm $HOME/${snap}
wget -q -O $HOME/.evmosd/config/addrbook.json https://evmos.theamsolutions.info/addrbook-test.json
sudo systemctl restart evmosd
journalctl -u evmosd-f -o cat
GOOD LUCK!
AM Solutions © Copyright. All rights reserved.