Rizon
RIZON utilizes Tendermint engine and Cosmos Inter-Blockchain Communication Protocol to enable optimal business scalability and usability. Modules and services contributed in RIZON allow decentralized governance and issuance of stablecoins. With RIZON Blockchain, businesses can significantly reduce operational costs while facilitating instant exchange of assets and horizontal expansion across borders. Interconnected businesses on RIZON can scale without constraint while maintaining sovereignty and staying blockchain agnostic
Chain ID: titan-1
Website: rizon.world
Explorer: explorer.ppnv.space/rizon
Public Endpoints:
✅ RPC
rpc.rizon.ppnv.space:19657
✅ API / REST
api.rizon.ppnv.space
✅ gRPC
grpc.rizon.ppnv.space:19090
✅ gRPC Web
grpc.rizon.ppnv.space:19091
Genesis:
curl -Ls https://service.ppnv.space/rizon/genesis.json > $HOME/.rizon/config/genesis.json
Peering:
✅ Seed Node
✅ Live Peers
✅ Addrbook #update every hour
curl -Ls https://service.ppnv.space/rizon/addrbook.json > $HOME/.rizon/config/addrbook.json
✅ State Sync #snapshot-interval = 1000
sudo systemctl stop rizond
cp $HOME/.rizon/data/priv_validator_state.json $HOME/.rizon/priv_validator_state.json.backup
rizond tendermint unsafe-reset-all --home $HOME/.rizon
STATE_SYNC_RPC=http://rpc.rizon.ppnv.space:19657
STATE_SYNC_PEER=27c499a913f58bc2284f8f0a3c25bb5b81a4e9cf@rpc.rizon.ppnv.space:19656
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/.rizon/config/config.toml
sed -i.bak -e "s|^rpc_servers *=.*|rpc_servers = \"$STATE_SYNC_RPC,$STATE_SYNC_RPC\"|" \
$HOME/.rizon/config/config.toml
sed -i.bak -e "s|^trust_height *=.*|trust_height = $SYNC_BLOCK_HEIGHT|" \
$HOME/.rizon/config/config.toml
sed -i.bak -e "s|^trust_hash *=.*|trust_hash = \"$SYNC_BLOCK_HASH\"|" \
$HOME/.rizon/config/config.toml
sed -i.bak -e "s|^persistent_peers *=.*|persistent_peers = \"$STATE_SYNC_PEER\"|" \
$HOME/.rizon/config/config.toml
mv $HOME/.rizon/priv_validator_state.json.backup $HOME/.rizon/data/priv_validator_state.json
sudo systemctl restart rizond && journalctl -u rizond -f --no-hostname -o cat