Busurnode Logo
Loading...
project logo
Sentinel mainnet
Chain ID: sentinelhub-2
Status: Online

Overview

Sentinel is an open source framework for a network of nodes on which Decentralized VPNs and other Web3 services are built. The purpose of the Sentinel ecosystem is to empower universal access to the internet in a trusted and provable manner. This will be done by allowing organizations and individuals around the world to construct decentralized, scalable, distributed networking solutions on Sentinel’s Cosmos-based blockchain in a cost-effective manner.

Our Contributions

Busurnode stands out in the Sentinel network with its exceptional RPC network, featuring the largest geo-load balancing setup available. This advanced infrastructure ensures seamless communication, providing unparalleled speed and reliability for users worldwide. In addition to managing the RPC network, Busurnode has critical infrastructure components such as Snapshots, Seeds, and Peers, offering full support for Sentinel blockchain node operators. These services simplify node setup and maintenance, empowering operators to easily participate in the network.

Busurnode also delivers reliable DVPN nodes across more than 55 countries, enhancing global accessibility and security within the network. To further support DVPN node runners, Busurnode manages SentNodes.com, a specialized monitoring tool that allows operators to efficiently track and manage node performance. Additionally, Busurnode operates an IBC relayer, facilitating cross-chain transfers and contributing to the broader Cosmos ecosystem. Through these offerings, Busurnode plays a crucial role in strengthening the Sentinel network, providing secure and robust solutions for decentralized services.

Endpoints

RPC Endpoints
Endpoint Location Status
https://rpc-sentinel.busurnode.com:443 Global Online
https://as-rpc-sentinel.busurnode.com:443 Asia Online
https://eu-rpc-sentinel.busurnode.com:443 Europe Online
https://na-rpc-sentinel.busurnode.com:443 North America Online
API Endpoints
Endpoint Location Status
https://api-sentinel.busurnode.com:443 Global Online
https://as-api-sentinel.busurnode.com:443 Asia Online
https://eu-api-sentinel.busurnode.com:443 Europe Online
https://na-api-sentinel.busurnode.com:443 North America Online
gRPC Endpoints
Endpoint Status
grpc.sentinel.busurnode.com:443 Online

Nodes

Our Public Nodes in Operations
Name Location Status
Chie Singapore Online
Haru Hong Kong Online
Suzu United Kingdom Online
Saki Germany Online
Mizu United States Online
Tsuki United States Online

Peers

Below are our public peers, you can add them to your persistent_peers in config.toml

Seeds

If you need seeds for your node, below are our seed nodes:

State Sync

In case you want to do state-sync, here is our state-sync enabled RPC, you can adjust on the [statesync] section in config.yoml
https://rpc-sentinel.busurnode.com:443
If you want to cleanup or start a new node without waiting for a long synchronization time, you can use our snapshot service.

Create a reusable shell script, for example statesync.sh with the following code. This script will fetch essential state-sync information (like block height and trust hash) from our server and update your config.toml file accordingly.
#!/bin/bash
SNAP_RPC="https://rpc-sentinel.busurnode.com: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)

sed -i.bak -E "s|^(enable[[:space:]]+=[[:space:]]+).*$|\1true| ; \
s|^(rpc_servers[[:space:]]+=[[:space:]]+).*$|\1\"$SNAP_RPC,$SNAP_RPC\"| ; \
s|^(trust_height[[:space:]]+=[[:space:]]+).*$|\1$BLOCK_HEIGHT| ; \
s|^(trust_hash[[:space:]]+=[[:space:]]+).*$|\1\"$TRUST_HASH\"|" $HOME/.sentinelhub/config/config.toml

Grant execution privileges to the script and run it
chmod 700 statesync.sh
./statesync.sh

Stop the node
sudo service sentinelhub stop

Reset the node
sentinelhub tendermint unsafe-reset-all --home $HOME/.sentinelhub --keep-addr-book

Restart the node
sudo service sentinelhub start

If everything is set up correctly, your node should begin syncing within 10 minutes.

Snapshot

Available snapshot files:
Height Size Updated Download
23145946 2.75 GB 1 hour ago 23145946.tar.lz4
23143472 2.74 GB 5 hours ago 23143472.tar.lz4
23140999 2.76 GB 9 hours ago 23140999.tar.lz4
Note: Snapshot are taken periodically every ~4hrs.

To simplify the re-sync from snapshot process, log in as the user running the sentinel service and create a reusable shell script, such as snapsync.sh with the following code. Make sure to update SERVICE_NAME if you use service name other than 'sentinelhub'.
#!/bin/bash

# Service Name (update this if you use service name other than 'sentinelhub')
SERVICE_NAME=sentinelhub

# Install required package
echo "Installing required package"
sudo apt install -y lz4 jq curl > /dev/null 2>&1

# Get Latest Snapshot URL
API_REQUEST=$(curl -s https://busurnode.com/api/v1/snapshot/mainnet/sentinel)
IS_SUCCESS=$(echo $API_REQUEST | jq -r '.success')
if [ "$IS_SUCCESS" = "true" ]; then
  SNAPSHOT_URL=$(echo $API_REQUEST | jq -r '.data.snapshot.url')
  echo "Latest Snapshot URL: $SNAPSHOT_URL"
else
  echo "Error fetching latest snapshot from Busurnode API"
  exit 1
fi

# Download the latest snapshot and save it as sentinel_snapshot.tar.lz4
echo "Downloading the latest snapshot..."
curl -L --progress-bar -o "$HOME/sentinel_snapshot.tar.lz4" "$SNAPSHOT_URL"
if [ $? -eq 0 ] && [ -f "$HOME/sentinel_snapshot.tar.lz4" ]; then
  echo "Download complete: $HOME/sentinel_snapshot.tar.lz4"
else
  echo "Error: Download failed."
  exit 1
fi

# Stop the sentinel service
echo "Stopping the sentinel service..."
sudo service $SERVICE_NAME stop

# Copy the validator state JSON file
cd $HOME
cp ~/.sentinelhub/data/priv_validator_state.json ~/.sentinelhub/priv_validator_state.json

# Reset Tendermint state
sentinelhub tendermint unsafe-reset-all --home $HOME/.sentinelhub --keep-addr-book

# Extract the snapshot
echo "Extracting snapshot..."
lz4 -c -d $HOME/sentinel_snapshot.tar.lz4 | tar -x -C $HOME/.sentinelhub
rm $HOME/sentinel_snapshot.tar.lz4

# Replace priv_validator_state from backup
cp ~/.sentinelhub/priv_validator_state.json ~/.sentinelhub/data/priv_validator_state.json

# Start the sentinel service
echo "Starting the sentinel service..."
sudo service $SERVICE_NAME start
echo "Process complete."

Grant execution privileges to the script and run it
chmod 700 snapsync.sh
./snapsync.sh

After that, make sure your node is running
sudo service sentinelhub status
sudo journalctl -u sentinelhub.service -f --output=cat

Information

This page showing data of 139 active blockchain nodes on Sentinel network obtained from our network scanner, updated every 5 minutes.
Please note that this page might not displaying all the active nodes on the network.

Decentralization Map

Active Nodes

Moniker Continent Country City
Busurnode EU United Kingdom London
Cosmostation NA Canada Longueuil
KalpaTech EU Germany Falkenstein
sentinel-node EU Germany Nuremberg
sentry-sentinel EU The Netherlands Rotterdam
Tendermint EU Germany Frankfurt am Main
sentinel EU Germany Nürnberg
AtmosferMuda NA Node NA United States Piscataway
Consensus One EU Poland Warsaw
Cosmostation NA Canada Montreal
cosmic-node EU Germany Nürnberg
SentinelGrowthDAO AS Singapore Singapore
Snow Fall EU Germany Falkenstein
Wanderer EU Germany Plauen
Busurnode AS Hong Kong Hong Kong
Avril14th EU Finland Helsinki
Busurnode NA United States Tampa
Busurnode EU France Roubaix
hello-sentinel-relayer EU Finland Helsinki
hello-sentinel-relayer EU Finland Helsinki
JackSparrow EU Switzerland Zürich
sentinel-node EU France Strasbourg
stakewolle AS India Mumbai
Tkd-Alex NA United States West Valley City
namnam EU Germany Falkenstein
SentinelGrowthDAO NA United States Phoenix
YOUR_MONIKER EU Germany Plauen
Busurnode AS Singapore Singapore
01no.de EU Romania Bucharest
Tendermint AS Japan Minamishinagawa
SentinelGrowthDAO EU The Netherlands Haarlem
BenjiNode-2 EU Germany Nürnberg
Tendermint NA United States Germantown
MathNodes EU Finland Helsinki
Busurnode EU The Netherlands Haarlem
Busurnode NA United States Manassas
SentinelGrowthDAO NA United States Manassas
Busurnode EU Germany Frankfurt am Main
EthicalNode EU Germany Nuremberg
SuchNode-FI-1 EU Finland Helsinki
SuchNode-US-2 NA United States Kansas City
CompuFun Node EU Germany Karlsruhe
Tendermint EU Germany Frankfurt am Main
Decloud Lab EU Russia Saint Petersburg
ValidatorNode NA United States Dallas
Declab service EU Russia Saint Petersburg
LithiumDigital-sentinel-main-validator2 EU France Paris
node EU France Lille
Busurnode NA United States San Jose
zeroservices EU The Netherlands Aachen
Strata One EU Germany Plauen
Coinpayu NA United States Bend
WS-NL-sentinel EU The Netherlands Naaldwijk
SuchNode-DE-1 EU Germany Plauen
norselabs NA United States Dallas
sentry EU Germany Plauen
StakeLab EU Finland Helsinki
Trinity Stake EU Germany Plauen
easy2stake EU Germany Plauen
A4ADAO EU Finland Helsinki
freak12techno EU Germany Herborn
Sentinel EU Finland Helsinki
Stake Frites Validators NA Canada Montréal
UbikCapital EU Germany Plauen
0xbas3d EU France Roubaix
exnihilo.validator EU United Kingdom Portsmouth
littlefox EU France Paris
Chainroot EU Germany Falkenstein
Tendermint EU Germany Frankfurt am Main
Nous Backend EU France Paris
SentinelGrowthDAO EU Austria Vienna
SIN EU Poland Warsaw
Nous Host NA United States Las Vegas
Tendermint EU Germany Frankfurt am Main
01no.de-relay EU Romania Bucharest
ChainTools EU France Lille
AtmosferMuda EU Poland Warsaw
hello-sentinel-main EU France Strasbourg
thechickencoop NA United States Greensburg
Busurnode AS Indonesia Jember
0itnmqjccvy0 EU Poland Warsaw
MathNodes-GRPC AS Singapore Singapore
SmartNodes EU United Kingdom Coventry
sentinel-relayer_mainnet-CroutonDigital EU Germany Plauen
Anomalo NA Canada Montréal
sentry1 EU France Lille
sentinel-fra1-2-public-statefulset-0 EU Germany Frankfurt am Main
LithiumDigital-sentinel-main-rpc EU France Paris
Noncompliant Network NA United States Los Angeles
Bitveil EU France Paris
GalaxyDigital EU Ireland Dublin
MathNodes Romania EU Romania Bistriţa
2-private-node AS Singapore Singapore
Mainnet | Docker NA United States Denver
SentinelGrowthDAO AS Japan Minato
SpacePotato NA United States New York City
MathNodes China AS Hong Kong Hong Kong
ChainToolsNode05 EU Finland Helsinki
Noderunners EU Russia Moscow
query-server-1 AS Singapore Singapore
Tendermint NA United States Germantown
hello-sentinel-backup EU Finland Helsinki
IBS EU France Le Mans
IBS EU Finland Helsinki
dvMiku Validator EU Finland Helsinki
liquify NA United States Manassas
csc17 AS Vietnam Hanoi
RPCIBS EU France Grenoble
CryptoNet EU France Roubaix
node EU Poland Warsaw
Tendermint NA United States Germantown
CommunityStaking EU United Kingdom Coventry
MedasComputers EU Germany Düsseldorf
node EU Poland Warsaw
Tendermint EU Germany Frankfurt am Main
Sentry1-ValidatorNode NA United States Dallas
Busurnode EU Germany Frankfurt am Main
omniflix EU Finland Helsinki
sentinel-node EU Finland Helsinki
freak12techno EU Russia Moscow
ChronoBit|RPC AF South Africa Blairgowrie
xyz EU United Kingdom London
TheDigitalEmpire EU Croatia Zagreb
Foxinodes EU Germany Düsseldorf
openstake.net EU Netherlands Amsterdam
LithiumDigital-sentinel-main-snapshot1 EU France Paris
Ungovernable NA Canada Montréal
sent-node2 EU Germany Falkenstein
RoomIT EU Finland Helsinki
Tendermint NA United States Germantown
Tendermint AS Japan Shinagawa
Kleomedes EU Italy Naples
sentinel-rpc EU Finland Helsinki
Tendermint EU Germany Frankfurt am Main
Coef 120 EU France Paris
explorer-1 NA United States Atlanta
e4bb50929020 NA United States New York City
688444947f8f EU Germany Frankfurt am Main
Tendermint NA United States Germantown