Endpoints
- RPC https://rpc-realio.sr20de.xyz
- API https://api-realio.sr20de.xyz
- GPRC https://grpc-realio.sr20de.xyz
- EVM https://evm-realio.sr20de.xyz
Explorer
Live peers
1 |
72e901acf31dc5ccd7e6ff69ae1da68695c2cef0@38.242.221.64:32656,5bd91f6e7e3bcaaddead32fd37d67458723fec73@159.223.132.183:46656,6f3a6c4dfde1d051f7f8b45a66dc76402ae5921b@65.21.170.3:37656,3c39a8d6cb58d1066b6c53c0db684cfe9606c612@157.245.252.93:26656,39e84967c02c7c04a0dd4bd426d484a65373d158@206.189.49.63:46656,1dcf307315f780d8287ce44c26fe57598bf51333@144.76.97.251:31656,26124ac249d9137bf436f270f58a71b0a146c8ee@88.99.161.162:44656,6051a50c13cdd70b4de46344453f8aadb2502957@87.246.173.248:26656,4d31b1306f36a7ac657a6ef0ba9fc14c0ac2bd7d@188.143.170.30:26656,2cce84bbb81a47429ba694cf988a1042bbda81a5@46.38.232.86:13656,48a7295960b825cf80c992dba4df9dbc078923b4@178.63.102.172:37656,684fe9acdb0819619a73830860aabdc41871e10e@135.181.20.30:26656,3c7fc674a11745e909d920ef943228922e0d7644@65.109.30.110:11643,eced2e7edfe6c530ccf319ca7c6ce0b72d1d5570@144.126.196.99:46656,b2a32889a47a1e705b65d07ef55866767330f853@194.163.165.176:36656,5297fd78ce03acce817730b822894653b7ecc70b@65.108.206.118:61256,50bc330655b61b924b753286c320fdc076c65030@65.108.232.182:12656,7842553cfe2b6b4a37348442cd3229a00c31c94b@81.196.253.241:15656,a05ece616d3f295b64a9286a5749db711c992957@65.109.113.247:12656,03996e7a9ba71171b638ad7651a106c354e4905e@65.109.63.110:12656,114fd79d317cee1bd33a6bce1b5dcacf3362d426@65.21.192.90:12656,0a25828d62cb2a29e2d3248c79e297084a17188a@65.109.92.148:26656,f7603cc80c43ed5cd7b4ae06db93f0a11600c4e5@45.94.58.246:44656,380795b140ccb8a95a7a9e128f78e7db910ce025@65.109.82.249:31656,397a0703715667b555086d663eccc1f13939c63c@65.109.92.241:21096,6cb86111dc7bc0ca755c0d32eabadd3152b63a93@144.76.164.139:12656,1e7e1faf277d19df05facebe2a7e403044662234@213.239.217.52:37656 |
Peer
51db60ff4c8c49bd84cf7cb93033772433a51be9@5.188.118.105:26656
State Sync
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
sudo systemctl stop realio-networkd realio-networkd tendermint unsafe-reset-all --home $HOME/.realio-network --keep-addr-book SNAP_RPC="https://rpc-realio-testnet.sr20de.xyz:443" 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 PEERS="51db60ff4c8c49bd84cf7cb93033772433a51be9@5.188.118.105:26656" sed -i 's|^persistent_peers *=.*|persistent_peers = "'$PEERS'"|' $HOME/.realio-network/config/config.toml sed -i 's|^enable *=.*|enable = true|' $HOME/.realio-network/config/config.toml sed -i 's|^rpc_servers *=.*|rpc_servers = "'$SNAP_RPC,$SNAP_RPC'"|' $HOME/.realio-network/config/config.toml sed -i 's|^trust_height *=.*|trust_height = '$BLOCK_HEIGHT'|' $HOME/.realio-network/config/config.toml sed -i 's|^trust_hash *=.*|trust_hash = "'$TRUST_HASH'"|' $HOME/.realio-network/config/config.toml sudo systemctl restart realio-networkd && sudo journalctl -u realio-networkd -f --no-hostname -o cat |