8ball
Links
Website: https://8ball.info
Telegram: https://t.me/eightball_net
Twitter: https://twitter.com/88baLLLL
Discord: https://discord.gg/Gph34GWk7V
Explorers
Endpoints
- Api https://api-8ball.sr20de.xyz
- RPC https://rpc-8ball.sr20de.xyz
- GRPC https://grpc-8ball.sr20de.xyz
Live peers
1 |
df8091366fb3fdc27d771f194d015cb5706b9208@141.95.104.32:26656,f27e60ac8345ddcd1b45611a1c96231349186289@169.0.116.111:26656,05d5c62a38e5fef23438778b60c53f8b3d0f1293@213.32.24.201:31656,08818ba77fa5a7f48ca40a6f94f4bf8cb1e7cec9@167.235.211.165:26656,b93fdf672a76dbcee29bd0de7f8f951d9842cbc3@144.86.144.165:26656,23ca587b56e1ecb4ef8d90e0d0707c5cb3d4beec@95.217.179.26:26656,b147eeeb9b090e4fcfe7f0ad247a9f4de97d0a12@161.35.206.32:23656,33d605aa9db91c771859c0cfbccfc461ebf4862b@89.58.7.221:28656,6a777cb54d2b723c76bef966ba69a78c63ae699b@65.108.8.247:21356,2b3ac0c9209161b11d6bbaffd440b4180fab396d@46.101.115.184:26656,66e66c7121914ce94a430e58cc3899131e99a4d8@195.201.83.242:11056,05a886facbabaee644c40a4531851af96aff3c19@88.99.161.162:22656,d1996d10e7b55cfa50d7f06c258655253b522fde@94.130.54.253:16602,61a3fc822ebccbcdc0cd6672552cbc49fe25d218@38.242.230.118:56656,574b7c46db376ed9589be4f054e25ab62fff8b9a@89.117.53.203:23656,230e6440e3e79f105925f58d4f5fbef0c390605d@75.119.140.129:23656,c02a1b910949d78bdd8a557e73c7dcc4a940ee3d@103.136.18.146:26656,410096561d4b180a7905563608a3e714a87cf916@51.91.64.170:27856,b64d80be1f179a46e14d48e8c34e252e36689920@192.99.44.79:21356,ffc801e1b8a35f08b00b03d786b258d8043a4dd9@130.255.170.151:36656,1d06f7b58159b395ce3bd92e71b75ea1ab2931d7@65.108.206.74:25656,f65ab85b48da197c24cace35ac3c6093833440ec@192.99.4.20:27656,1745c13af10d168eca9e08dd4078818298a64ad9@146.190.83.6:23656,4b23718ed343d4fb25ca4e47373357151a0d525a@162.19.238.184:26656,79db9c0e766b37f457990e1f96330b46557d3ceb@45.94.58.246:15656,9d733997b9f24e68d172db734f1ec28b57805f31@57.128.82.243:34656,ade4d8bc8cbe014af6ebdf3cb7b1e9ad36f412c0@135.181.5.219:21356 |
State Sync
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
sudo systemctl stop 8ball cp $HOME/.8ball/data/priv_validator_state.json $HOME/.8ball/priv_validator_state.json.backup 8ball tendermint unsafe-reset-all --home $HOME/.8ball --keep-addr-book SNAP_RPC="https://rpc-8ball.sr20de.xyz" 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="ffc801e1b8a35f08b00b03d786b258d8043a4dd9@130.255.170.151:36656" sed -i 's|^persistent_peers *=.*|persistent_peers = "'$PEERS'"|' $HOME/.8ball/config/config.toml sed -i 's|^enable *=.*|enable = true|' $HOME/.8ball/config/config.toml sed -i 's|^rpc_servers *=.*|rpc_servers = "'$SNAP_RPC,$SNAP_RPC'"|' $HOME/.8ball/config/config.toml sed -i 's|^trust_height *=.*|trust_height = '$BLOCK_HEIGHT'|' $HOME/.8ball/config/config.toml sed -i 's|^trust_hash *=.*|trust_hash = "'$TRUST_HASH'"|' $HOME/.8ball/config/config.toml mv $HOME/.8ball/priv_validator_state.json.backup $HOME/.8ball/data/priv_validator_state.json sudo systemctl restart 8ball && sudo journalctl -u 8ball -f --no-hostname -o cat |