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
Validator's health Grafana dashboard - LINK
NODE SETUP GUIDE
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
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 SNAPSHOTS
Polkachu snapshot - LINK
GalaxyStaking snapshot - LINK
Bware Labs snapshot - LINK
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
GOOD LUCK!
AM Solutions © Copyright. All rights reserved.
We need your consent to load the translations
We use a third-party service to translate the website content that may collect data about your activity. Please review the details in the privacy policy and accept the service to view the translations.