Skip to content

DTEAMTECH/celestia-bridge-health-checker

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Celestia Bridge Health Checker (Web)

bridge_health_checker_web

A simple and effective tool to check the health of your Celestia Bridge node.


About

This service allows Celestia node operators to verify if their bridge node is online, responsive, and properly configured for RPC access.

Usage

You can use the checker directly via our hosted web interface https://celestia-bridge-checker.dteam.tech.

  1. Open the RPC port on your node (change the UFW settings, if applicable):

    • Mainnet:
      sudo sed -i '/\[RPC\]/,/^\[/ s/Address = "localhost"/Address = "0.0.0.0"/' $HOME/.celestia-bridge/config.toml
      sudo systemctl restart celestia-bridge
    • Testnet:
      sudo sed -i '/\[RPC\]/,/^\[/ s/Address = "localhost"/Address = "0.0.0.0"/' $HOME/.celestia-bridge-mocha-4/config.toml
      sudo systemctl restart celestia-bridge
  2. Gather required data:

    • Get your IP:
      hostname -I
    • Get your port:
      #mainnet
      sudo awk -F' = ' '/\[RPC\]/ {flag=1; next} flag && /Port/ {gsub(/"/, "", $2); print $2; exit}' $HOME/.celestia-bridge/config.toml
      
      #testnet
      sudo awk -F' = ' '/\[RPC\]/ {flag=1; next} flag && /Port/ {gsub(/"/, "", $2); print $2; exit}' $HOME/.celestia-bridge-mocha-4/config.toml
    • Get your authentication token:
      #mainnet
      celestia bridge auth read
      
      #testnet
      celestia bridge auth read --p2p.network mocha-4
  3. Visit the website and input the data to check your node.

Examples

1. Homepage of the Celestia Bridge Health Checker

image

2. Filled-in form ready for check

image

3. Successful check result

image

Links

Contributing

We welcome all contributions to Celestia Bridge Health Checker (Web)! If you have ideas for new features, improvements, or bug fixes, feel free to open a pull request. We encourage open collaboration and appreciate your help in making this tool even more robust and user-friendly.

If you prefer to discuss or propose improvements privately, or if you need further assistance, please send us an email at contact@dteam.tech. We’re excited to collaborate with the community to continually enhance this service.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors