Overview
                                    On this page, you can find details about the services we provide on the Sentinel Testnet. For our mainnet services, please click here
                                    
                                    
                                                                            Endpoints
                                                                                                                                    RPC Endpoints
                                                
                                                    
                                                        
                                                        
                                                            | Endpoint | 
                                                                                                                        Status | 
                                                        
                                                        
                                                        
                                                                                                                    
                                                                | 
                                                                    
                                                                        https://rpc-sentinel-testnet.busurnode.com:443
                                                                        
                                                                    
                                                                 | 
                                                                                                                                 Online | 
                                                            
                                                                                                                
                                                    
                                                 
                                                                                                                                                                                                                                API Endpoints
                                                
                                                    
                                                        
                                                        
                                                            | Endpoint | 
                                                                                                                        Status | 
                                                        
                                                        
                                                        
                                                                                                                    
                                                                | 
                                                                    
                                                                        https://api-sentinel-testnet.busurnode.com:443
                                                                        
                                                                    
                                                                 | 
                                                                                                                                 Online | 
                                                            
                                                                                                                
                                                    
                                                 
                                                                                                                                                                                                            
                                    
                                                                            Nodes
                                        Our Public Nodes in Operations
                                        
                                            
                                                
                                                    
                                                        | Name | 
                                                                                                                    Location | 
                                                                                                                Status | 
                                                    
                                                
                                                
                                                                                                            
                                                            | Ayumi | 
                                                                                                                            France | 
                                                                                                                         Offline | 
                                                        
                                                                                                            
                                                            | Hana | 
                                                                                                                            United States | 
                                                                                                                         Offline | 
                                                        
                                                                                                    
                                            
                                         
                                                                                                                
                                 
                                
                                    
                                                                            
                                            Peers
                                            Below are our public peers, you can add them to your persistent_peers in config.toml
                                            
                                                                                     
                                                                        
                                    
                                                                        
                                    
                                                                            
                                            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-testnet.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-testnet.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.