https://github.com/Scottcjn/rustchain-bounties
Earn RTC crypto by contributing to the RustChain ecosystem. Bounties from 1-150 RTC. Star, code, write tutorials, find bugs.
https://github.com/Scottcjn/rustchain-bounties
ai-agents blockchain bounties bug-bounty community contributions cryptocurrency earn-crypto first-timers-only good-first-issue hacktoberfest open-source rtc-token rustchain vintage-computing
Last synced: 3 months ago
JSON representation
Earn RTC crypto by contributing to the RustChain ecosystem. Bounties from 1-150 RTC. Star, code, write tutorials, find bugs.
- Host: GitHub
- URL: https://github.com/Scottcjn/rustchain-bounties
- Owner: Scottcjn
- Created: 2026-02-02T04:29:16.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2026-04-03T01:53:12.000Z (3 months ago)
- Last Synced: 2026-04-03T11:28:50.634Z (3 months ago)
- Topics: ai-agents, blockchain, bounties, bug-bounty, community, contributions, cryptocurrency, earn-crypto, first-timers-only, good-first-issue, hacktoberfest, open-source, rtc-token, rustchain, vintage-computing
- Language: Python
- Homepage: https://rustchain.org
- Size: 2.83 MB
- Stars: 113
- Watchers: 13
- Forks: 170
- Open Issues: 302
-
Metadata Files:
- Readme: README.health-check.md
- Contributing: CONTRIBUTING.md
- Code of conduct: CODE_OF_CONDUCT.md
- Security: SECURITY.md
Awesome Lists containing this project
- awesome-hacktoberfest-2026 - RustChain Bounties - Bug bounties and feature bounties paid in RTC tokens (Repositories Coding for Beginners)
README
# RustChain Health Check CLI
A simple CLI tool to query all RustChain attestation nodes and display their health status.
## Installation
```bash
pip install -r requirements.txt
chmod +x health-check.py
```
## Usage
### Human-readable table output:
```bash
./health-check.py
```
### JSON output:
```bash
./health-check.py --json
```
## Example Output
```
🦀 RustChain Node Health Status
============================================================
+----------------+------------+-----------+----------+--------+-----------+
| Node | Status | Version | Uptime | DB RW | Tip Age |
+================+============+===========+==========+========+===========+
| 50.28.86.131 | ✅ Online | 1.0.0 | 12h34m | ✅ RW | 2s |
+----------------+------------+-----------+----------+--------+-----------+
| 50.28.86.153 | ✅ Online | 1.0.0 | 12h32m | ✅ RW | 1s |
+----------------+------------+-----------+----------+--------+-----------+
| 76.8.228.245 | ✅ Online | 1.0.0 | 12h30m | ✅ RW | 3s |
+----------------+------------+-----------+----------+--------+-----------+
```
## Features
- Queries all 3 official attestation nodes
- Shows version, uptime, DB read/write status, and block tip age
- Supports both human-readable and JSON output formats
- Timeout handling for unresponsive nodes