Rewarding users across Web3 for on-chain activity! Developing the rewarding infrastructure which is $2trillion worth market! DM us to enlist your project!
Explorers
Endpoints
- API https://api-bonusblock.sr20de.xyz
- RPC https://rpc-bonusblock.sr20de.xyz
- GRPC https://grpc-bonusblock.sr20de.xyz
Peers
1 |
17ccc50a284a4dd377dfd6ba28fc095b0bdebaaf@184.174.33.95:26656,fadd863afad4803c2329609cbf91abcab203ef2c@46.101.131.222:26656,c9e3d0971d1d4222e28a21805e8f0cfdf369dea4@64.226.85.20:26656,699a35d618e20315653a1966d72263e7c30d4b55@46.38.232.86:15656,d1b0bc188408a7ea559ab083488f58dd51c1a6cc@144.91.66.143:29656,f0dd223dfe4afd1d03c175aa4eaa0cd7ae9daffa@38.242.230.118:58656,aa4f63c188ad819aa156b0b51dd289d6f68230e2@143.198.136.136:18656,3d9995a9b0d4b82feb99d7fade96cc228f5c7196@38.242.132.243:26656,52ade4cf379b862ae69d0d306fb368c2f9a859ea@31.220.86.138:26656,e5e04918240cfe63e20059a8abcbe62f7eb05036@83.99.170.49:26656,94ddef64186ade1bf87875e06247787d2c93f3e7@94.16.117.238:23656,7a2709532c9bc2972634269e143b12338277412c@164.92.66.108:26656,400d6cdf2aefbedfe0356418a96dddd8b008af62@109.123.252.193:26656,b935e89a3cf017d008219b78bf8fd8384917b5aa@159.223.48.33:26656,6928632236c70efa9c024399134545843dc0d431@65.109.28.226:08656 |
Peer for State-sync
1 |
27b0297b916781ab02cf5cef9d28166a345a3da8@46.17.250.108:36656 |
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 bonus-blockd cp $HOME/.bonusblock/data/priv_validator_state.json $HOME/.bonusblock/priv_validator_state.json.backup bonus-blockd tendermint unsafe-reset-all --home $HOME/.bonusblock --keep-addr-book SNAP_RPC="https://rpc-bonusblock.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="27b0297b916781ab02cf5cef9d28166a345a3da8@46.17.250.108:36656,17ccc50a284a4dd377dfd6ba28fc095b0bdebaaf@184.174.33.95:26656,fadd863afad4803c2329609cbf91abcab203ef2c@46.101.131.222:26656,c9e3d0971d1d4222e28a21805e8f0cfdf369dea4@64.226.85.20:26656,699a35d618e20315653a1966d72263e7c30d4b55@46.38.232.86:15656,d1b0bc188408a7ea559ab083488f58dd51c1a6cc@144.91.66.143:29656,f0dd223dfe4afd1d03c175aa4eaa0cd7ae9daffa@38.242.230.118:58656,aa4f63c188ad819aa156b0b51dd289d6f68230e2@143.198.136.136:18656,3d9995a9b0d4b82feb99d7fade96cc228f5c7196@38.242.132.243:26656,52ade4cf379b862ae69d0d306fb368c2f9a859ea@31.220.86.138:26656,e5e04918240cfe63e20059a8abcbe62f7eb05036@83.99.170.49:26656,94ddef64186ade1bf87875e06247787d2c93f3e7@94.16.117.238:23656,7a2709532c9bc2972634269e143b12338277412c@164.92.66.108:26656,400d6cdf2aefbedfe0356418a96dddd8b008af62@109.123.252.193:26656,b935e89a3cf017d008219b78bf8fd8384917b5aa@159.223.48.33:26656,6928632236c70efa9c024399134545843dc0d431@65.109.28.226:08656" sed -i 's|^persistent_peers *=.*|persistent_peers = "'$PEERS'"|' $HOME/.bonusblock/config/config.toml sed -i 's|^enable *=.*|enable = true|' $HOME/.bonusblock/config/config.toml sed -i 's|^rpc_servers *=.*|rpc_servers = "'$SNAP_RPC,$SNAP_RPC'"|' $HOME/.bonusblock/config/config.toml sed -i 's|^trust_height *=.*|trust_height = '$BLOCK_HEIGHT'|' $HOME/.bonusblock/config/config.toml sed -i 's|^trust_hash *=.*|trust_hash = "'$TRUST_HASH'"|' $HOME/.bonusblock/config/config.toml mv $HOME/.bonusblock/priv_validator_state.json.backup $HOME/.bonusblock/data/priv_validator_state.json sudo systemctl restart bonus-blockd && sudo journalctl -u bonus-blockd -f --no-hostname -o cat |