A simple and effective tool to check the health of your Celestia Bridge node.
This service allows Celestia node operators to verify if their bridge node is online, responsive, and properly configured for RPC access.
You can use the checker directly via our hosted web interface https://celestia-bridge-checker.dteam.tech.
-
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
- Mainnet:
-
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
- Get your IP:
-
Visit the website and input the data to check your node.
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.
