Rebus

Stop rebusd service and reset database:

sudo systemctl stop rebusd
rebusd tendermint unsafe-reset-all --home $HOME/.rebusd --keep-addr-book
PEER="ad116a3f497ebb37ac14226c22a1483237a224ac@65.108.229.102:23656"
SNAP="https://rpc-rebus.huginn.tech:443"
LATEST_HEIGHT=$(curl -s $SNAP/block | jq -r .result.block.header.height)
TRUST_HEIGHT=$((LATEST_HEIGHT - 1000))
TRUST_HASH=$(curl -s "$SNAP/block?height=$TRUST_HEIGHT" | jq -r .result.block_id.hash)

sed -i.bak -E "s|^(enable[[:space:]]+=[[:space:]]+).*$|\1true| ; \
s|^(rpc_servers[[:space:]]+=[[:space:]]+).*$|\1\"$SNAP,$SNAP\"| ; \
s|^(trust_height[[:space:]]+=[[:space:]]+).*$|\1$TRUST_HEIGHT| ; \
s|^(trust_hash[[:space:]]+=[[:space:]]+).*$|\1\"$TRUST_HASH\"|" $HOME/.rebusd/config/config.toml
sed -i.bak -e "s/^persistent_peers *=.*/persistent_peers = \"$PEER\"/" $HOME/.rebusd/config/config.toml

2- Run rebusd and check logs

sudo systemctl start rebusd
sudo journalctl -u rebusd -f -o cat

Last updated