Rebus
Rebus is a regulated investment platform that uses a native utility coin, $REBUS, to allow a channel of asset managers and other financial institutions to manage and sell DeFi instruments along with their Traditional (TradFi) instruments
Chain ID: reb_1111-1
Website: rebuschain.com
Explorer: explorer.ppnv.space/rebus
Public Endpoints:
✅ RPC
rpc.rebus.ppnv.space:37657
✅ API / REST
api.rebus.ppnv.space
✅ gRPC
grpc.rebus.ppnv.space:37090
✅ gRPC Web
grpc.rebus.ppnv.space:37091
Genesis:
curl -Ls https://service.ppnv.space/rebus/genesis.json > $HOME/.rebusd/config/genesis.json
IBC Relayer:
REBUS <-> OSMOSIS (channel-0 <-> channel-355)
Peering:
✅ Seed Node
✅ Live Peers
✅ Addrbook #update every hour
curl -Ls https://service.ppnv.space/rebus/addrbook.json > $HOME/.rebusd/config/addrbook.json
✅ State Sync #snapshot-interval = 1000
sudo systemctl stop rebusd
cp $HOME/.rebusd/data/priv_validator_state.json $HOME/.rebusd/priv_validator_state.json.backup
rebusd tendermint unsafe-reset-all --home $HOME/.rebusd
STATE_SYNC_RPC=http://rpc.rebus.ppnv.space:37657
STATE_SYNC_PEER=235a2754b94c86a85ba645119151ee55d6971554@rpc.rebus.ppnv.space:37656
LATEST_HEIGHT=$(curl -s $STATE_SYNC_RPC/block | jq -r .result.block.header.height)
SYNC_BLOCK_HEIGHT=$(($LATEST_HEIGHT - 1000))
SYNC_BLOCK_HASH=$(curl -s "$STATE_SYNC_RPC/block?height=$SYNC_BLOCK_HEIGHT" | jq -r .result.block_id.hash)
sed -i.bak -e "s|^enable *=.*|enable = true|" $HOME/.rebusd/config/config.toml
sed -i.bak -e "s|^rpc_servers *=.*|rpc_servers = \"$STATE_SYNC_RPC,$STATE_SYNC_RPC\"|" \
$HOME/.rebusd/config/config.toml
sed -i.bak -e "s|^trust_height *=.*|trust_height = $SYNC_BLOCK_HEIGHT|" \
$HOME/.rebusd/config/config.toml
sed -i.bak -e "s|^trust_hash *=.*|trust_hash = \"$SYNC_BLOCK_HASH\"|" \
$HOME/.rebusd/config/config.toml
sed -i.bak -e "s|^persistent_peers *=.*|persistent_peers = \"$STATE_SYNC_PEER\"|" \
$HOME/.rebusd/config/config.toml
mv $HOME/.rebusd/priv_validator_state.json.backup $HOME/.rebusd/data/priv_validator_state.json
sudo systemctl restart rebusd && journalctl -u rebusd -f --no-hostname -o cat