Teritori
Telegram Uptime checker bot
https://t.me/TeritoriUpTime_bot
- *Without installing any software (grafana, tenderduty, prometheus or others)
- *That bot not only warns that the validator is already in jail but pings you when your validator starts skipping blocks to keep you out of jail
- *Сan tell you about the time left before being sent to jail
- *Clear and pleasant user interface and validator status check button. Also, bot can be customizable and it may add many other functions. We already implement many known cosmos-sdk networks and all of them fully support us
Public RPC
It provides a comprehensive API to interact with the blockchain.
http://teritori.web3validator.info:28157
LCD (Rest) API Endpoint
With Swagger enabled
http://teritori.web3validator.info:1317
GRPC Endpoint
Secure GRPC server
http://teritori.web3validator.info:9220
Genesis
wget http://teritori.web3validator.info/genesis_teritori.json -o $HOME/.teritorid/config/genesis.json
Addrbook
it will help you to connect to the network and start receiving blocks
wget http://teritori.web3validator.info/addrbook_teritori.json -o $HOME/.teritorid/config/addrbook.json
StateSync
This section allows your node to join the network in a few minutes by using state sync. Note that the node will have a truncated block history starting at the height of the restored snapshot.
SNAP_RPC="http://teritori.web3validator.info:28157"
LATEST_HEIGHT=$(curl -s $SNAP_RPC/block | jq -r .result.block.header.height); \
BLOCK_HEIGHT=$((LATEST_HEIGHT - 2000)); \
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\"\"|" $HOME/.teritorid/config/config.toml
sed -i.bak -e "s/^persistent_peers *=.*/persistent_peers = \"$peers\"/" $HOME/.teritorid/config/config.toml
Reset the database
sudo systemctl stop teritorid &&
teritorid tendermint unsafe-reset-all --home $HOME/.teritorid --keep-addr-book
Restart node and check the logs
sudo systemctl start teritorid && sudo journalctl -u teritorid -f --no-hostname -o cat