RustChain FAQ and Troubleshooting
March 11, 2026 ยท View on GitHub
This guide covers common setup and runtime issues for miners and node users.
FAQ
1) What is the difference between RTC and wRTC?
RTCis native to RustChain.wRTCis the wrapped Solana representation used for bridge/swap workflows.- Official wRTC mint:
12TAdKXxcGf6oCv4rqDz2NkgxjyHq6HQKoxKZYGf5i4X
2) How do I check if the network is online?
curl -sk https://rustchain.org/health | jq .
You should see a JSON response. If the command times out repeatedly, check local firewall/VPN and retry.
3) How do I verify my miner is visible?
curl -sk https://rustchain.org/api/miners | jq .
If your miner is missing, wait a few minutes after startup and re-check logs.
4) How do I check wallet balance?
curl -sk "https://rustchain.org/wallet/balance?miner_id=YOUR_WALLET_NAME" | jq .
5) Is self-signed TLS expected on the node API?
Yes. Existing docs use -k/--insecure for this reason:
curl -sk https://rustchain.org/health
Troubleshooting
Installer script fails immediately
Symptoms:
- install script exits during dependency or venv stage
Checks:
python3 --version
curl --version
bash --version
Fix:
- Ensure
python3,curl, andbashare available inPATH. - Re-run install script with a clean shell session.
Miner starts but no rewards appear
Checks:
- Confirm wallet/miner id is the one you query.
- Confirm node health and miners endpoint are reachable.
- Keep miner online long enough for epoch settlement.
Commands:
curl -sk https://rustchain.org/health | jq .
curl -sk https://rustchain.org/api/miners | jq .
curl -sk "https://rustchain.org/wallet/balance?miner_id=YOUR_WALLET_NAME" | jq .
API calls fail with SSL/certificate errors
Use -k as shown in official docs:
curl -sk https://rustchain.org/api/miners | jq .
clawrtc wallet show says "could not reach network"
The public node is healthy if this succeeds:
curl -sk https://rustchain.org/health | jq .
curl -sk "https://rustchain.org/wallet/balance?miner_id=YOUR_WALLET_NAME" | jq .
If those commands work but your local helper still says could not reach network, you are likely using an older clawrtc wallet helper that still points at the retired bulbous-bouffant.metalseed.net host. Current docs use https://rustchain.org, and current clawrtc releases also do not ship a generic wallet show subcommand.
Bridge/swap confusion (RTC vs wRTC)
- Bridge URL: https://bottube.ai/bridge
- Raydium swap URL: https://raydium.io/swap/?inputMint=sol&outputMint=12TAdKXxcGf6oCv4rqDz2NkgxjyHq6HQKoxKZYGf5i4X
- Always verify mint:
12TAdKXxcGf6oCv4rqDz2NkgxjyHq6HQKoxKZYGf5i4X
Wrong wallet/address format submitted
- Do not reuse addresses across incompatible chains without bridge flow.
- Recheck destination before signing.
- If unsure, perform a small test transfer first.
Quick Incident Checklist
- Confirm service health endpoint.
- Confirm miner appears in
/api/miners. - Confirm wallet query uses exact miner id.
- Confirm bridge direction and token mint.
- Capture command output and timestamps for support.
Security Notes
- Never share seed phrases or private keys.
- Avoid links from unknown DMs.
- Bookmark official RustChain and BoTTube URLs.