Aura


@Aura_Uptime_Checker_Bot
It can notify you via telegram when your validator starts skipping blocks. It also informs you about the time left before being sent to jail. And the best part? You don't need to install any software. Plus, it offers validator status check.
Public API
# RPC Endpoint
http://aura.web3validator.info:27557
# LCD (Rest) API Endpoint
http://aura.web3validator.info:1417
# GRPC Endpoint
http://aura.web3validator.info:9750
Install binary
Step-by-step
You can check new version here (New_version_bin)
cd $HOME
git clone https://github.com/aura-nw/aura.git -b aura_v0.4.4
cd $HOME/aura
make install
aurad init web34ever --chain-id xstaxy-1
Genesis
file
wget http://aura2.web3validator.info/genesis_aura.json -O $HOME/.aura/config/genesis.json
Addrbook
File that consists list with the peers
wget http://aura2.web3validator.info/addrbook_aura.json -O $HOME/.aura/config/addrbook.json
Aurad service
service file to start your node as a service
wget http://aura2.web3validator.info/aurad.service -P /etc/systemd/system/
sudo systemctl start aurad && sudo journalctl -u aurad -f --no-hostname -o cat
State Sync
If you want to quickly catch up with the network
SNAP_RPC="http://aura.web3validator.info:27557"
peers="7c032300fb320d452624f9a2e8c485a41fb427e9@aura.web3validator.info:27556"
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/.aura/config/config.toml
sed -i.bak -e "s/^persistent_peers *=.*/persistent_peers = \"$peers\"/" $HOME/.aura/config/config.toml
sudo systemctl stop aurad &&
aurad tendermint unsafe-reset-all --home $HOME/.aura --keep-addr-book
sudo systemctl start aurad && sudo journalctl -u aurad -f --no-hostname -o cat