Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
64 changes: 0 additions & 64 deletions .github/workflows/bounty-verifier.yml

This file was deleted.

7 changes: 0 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,13 +34,6 @@ jobs:
- name: Security scan (tests)
run: bandit -r tests -ll

- name: Attestation fuzz regression gate
env:
RC_ADMIN_KEY: "0123456789abcdef0123456789abcdef"
DB_PATH: ":memory:"
ATTEST_FUZZ_CASES: "10000"
run: python -m pytest tests/test_attestation_fuzz.py -k mutation_regression_no_unhandled_exceptions -v

- name: Run tests with pytest (blocking)
env:
RC_ADMIN_KEY: "0123456789abcdef0123456789abcdef"
Expand Down
68 changes: 0 additions & 68 deletions .github/workflows/ci_ledger_invariants.yml

This file was deleted.

3 changes: 0 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,6 @@ Thumbs.db

# Logs
*.log
.pytest_cache/
pytest-cache-files-*/
tests/.tmp_attestation/

# Windows miner build artifacts
Rustchain/miners/windows/dist/
Expand Down
127 changes: 1 addition & 126 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,30 +20,12 @@

*Your PowerPC G4 earns more than a modern Threadripper. That's the point.*

[Website](https://rustchain.org) • [Manifesto](https://rustchain.org/manifesto.html) • [Boudreaux Principles](docs/BOUDREAUX_COMPUTING_PRINCIPLES.md) • [Live Explorer](https://rustchain.org/explorer) • [Swap wRTC](https://raydium.io/swap/?inputMint=sol&outputMint=12TAdKXxcGf6oCv4rqDz2NkgxjyHq6HQKoxKZYGf5i4X) • [DexScreener](https://dexscreener.com/solana/8CF2Q8nSCxRacDShbtF86XTSrYjueBMKmfdR3MLdnYzb) • [wRTC Quickstart](docs/wrtc.md) • [wRTC Tutorial](docs/WRTC_ONBOARDING_TUTORIAL.md) • [Grokipedia Ref](https://grokipedia.com/search?q=RustChain) • [Whitepaper](docs/RustChain_Whitepaper_Flameholder_v0.97-1.pdf) • [Quick Start](#-quick-start) • [How It Works](#-how-proof-of-antiquity-works)
[Website](https://rustchain.org) • [Live Explorer](https://rustchain.org/explorer) • [Swap wRTC](https://raydium.io/swap/?inputMint=sol&outputMint=12TAdKXxcGf6oCv4rqDz2NkgxjyHq6HQKoxKZYGf5i4X) • [DexScreener](https://dexscreener.com/solana/8CF2Q8nSCxRacDShbtF86XTSrYjueBMKmfdR3MLdnYzb) • [wRTC Quickstart](docs/wrtc.md) • [wRTC Tutorial](docs/WRTC_ONBOARDING_TUTORIAL.md) • [Grokipedia Ref](https://grokipedia.com/search?q=RustChain) • [Whitepaper](docs/RustChain_Whitepaper_Flameholder_v0.97-1.pdf) • [Quick Start](#-quick-start) • [How It Works](#-how-proof-of-antiquity-works)

</div>

---

## Q1 2026 Traction

> *All data from [live GitHub API pull](https://github.com/Scottcjn/Rustchain/blob/main/docs/DEVELOPER_TRACTION_Q1_2026.md) compared against [GitClear](https://www.gitclear.com/research_studies/git_commit_count_percentiles_annual_days_active_from_largest_data_set) (878K dev-years), [LinearB](https://linearb.io/resources/software-engineering-benchmarks-report) (8.1M PRs), and [Electric Capital](https://www.developerreport.com) benchmarks.*

| Metric (90 days) | Elyan Labs | Industry Median | Sei Protocol ($85M) |
|-------------------|-----------|----------------|---------------------|
| Commits | **1,882** | 105-168 | 297 |
| Repos shipped | **97** | 1-3 | 0 new |
| GitHub stars | **1,334** | 5-30 | 2,837 (lifetime) |
| Developer interactions | **150+** | 0-2 | 78 (lifetime) |
| Commits/dev/month | **627** | 56 | 7.6 |
| External contributions | **32 PRs** | 0-2 | 0 |
| Funding | **$0** | $0 | $85,000,000 |

**[Full traction report with methodology and sources →](https://github.com/Scottcjn/Rustchain/blob/main/docs/DEVELOPER_TRACTION_Q1_2026.md)**

---

## 🪙 wRTC on Solana

RustChain Token (RTC) is now available as **wRTC** on Solana via the BoTTube Bridge:
Expand Down Expand Up @@ -239,10 +221,6 @@ Earn **RTC** by contributing to the RustChain ecosystem!

---

## Testing Notes

- Attestation malformed-input fuzz harness and replayable corpus: [docs/attestation_fuzzing.md](docs/attestation_fuzzing.md)

## 💰 Antiquity Multipliers

Your hardware's age determines your mining rewards:
Expand Down Expand Up @@ -347,50 +325,6 @@ curl -sk "https://rustchain.org/wallet/balance?miner_id=YOUR_WALLET"
open https://rustchain.org/explorer
```

### Governance Proposals & Voting

Rules:
- Proposal lifecycle: `Draft -> Active (7 days) -> Passed/Failed`
- Proposal creation: wallet must hold **more than 10 RTC**
- Voting eligibility: voter must be an **active miner** (from the attested miners view)
- Signature: votes require **Ed25519** signature verification
- Vote weight: `1 RTC = 1 base vote`, then multiplied by the miner antiquity multiplier
- Pass condition at close: `yes_weight > no_weight`

Endpoints:

```bash
# Create proposal
curl -sk -X POST https://rustchain.org/governance/propose \
-H 'Content-Type: application/json' \
-d '{
"wallet":"RTC...",
"title":"Enable parameter X",
"description":"Rationale and implementation details"
}'

# List proposals
curl -sk https://rustchain.org/governance/proposals

# Proposal detail
curl -sk https://rustchain.org/governance/proposal/1

# Submit signed vote
curl -sk -X POST https://rustchain.org/governance/vote \
-H 'Content-Type: application/json' \
-d '{
"proposal_id":1,
"wallet":"RTC...",
"vote":"yes",
"nonce":"1700000000",
"public_key":"<ed25519_pubkey_hex>",
"signature":"<ed25519_signature_hex>"
}'
```

Web UI:
- `GET /governance/ui` serves a lightweight page to list proposals and submit votes.

## 🖥️ Supported Platforms

| Platform | Architecture | Status | Notes |
Expand Down Expand Up @@ -473,7 +407,6 @@ Read the draft spec:

## 📝 Articles

- [I Built More in 90 Days With $0 Than an $85M-Funded Team](https://dev.to/scottcjn/i-built-more-in-90-days-with-0-than-an-85m-funded-team-of-13-engineers-3oi0) - Dev.to
- [Proof of Antiquity: A Blockchain That Rewards Vintage Hardware](https://dev.to/scottcjn/proof-of-antiquity-a-blockchain-that-rewards-vintage-hardware-4ii3) - Dev.to
- [I Run LLMs on a 768GB IBM POWER8 Server](https://dev.to/scottcjn/i-run-llms-on-a-768gb-ibm-power8-server-and-its-faster-than-you-think-1o) - Dev.to

Expand Down Expand Up @@ -519,61 +452,3 @@ clawrtc mine --dry-run
```

Expected: all 6 hardware fingerprint checks execute on native ARM64 without architecture fallback errors.

---

## Tech Stack

*Other projects flex React and Kubernetes. We flex COBOL and N64 assembly.*

**Vintage & Retro** — the stuff nobody else runs:

![COBOL](https://img.shields.io/badge/COBOL-%F0%9F%91%B4_Grandpa_Code-8B4513?style=flat-square)
![68K](https://img.shields.io/badge/68K-Mac_Classic-000000?style=flat-square&logo=apple&logoColor=white)
![i386](https://img.shields.io/badge/i386-DOS-808080?style=flat-square&logo=intel&logoColor=white)
![N64](https://img.shields.io/badge/N64-MIPS_R4300i-E60012?style=flat-square&logo=nintendo&logoColor=white)
![N64 ASM](https://img.shields.io/badge/N64_ASM-f3d_opcodes-228B22?style=flat-square)
![NES](https://img.shields.io/badge/NES-6502-CC0000?style=flat-square)
![Game Boy](https://img.shields.io/badge/Game_Boy-Z80-8DB600?style=flat-square)
![Amiga](https://img.shields.io/badge/Amiga-Kickstart-FF4500?style=flat-square)
![SPARC](https://img.shields.io/badge/SPARC-Sun-FF6600?style=flat-square)

**PowerPC & POWER** — where the antiquity bonus lives:

![G4](https://img.shields.io/badge/G4-2.5x_Antiquity-7B68EE?style=flat-square&logo=apple&logoColor=white)
![G5](https://img.shields.io/badge/G5-Dual_970-9370DB?style=flat-square&logo=apple&logoColor=white)
![POWER8](https://img.shields.io/badge/POWER8-128_Threads-0530AD?style=flat-square&logo=ibm&logoColor=white)
![512GB](https://img.shields.io/badge/RAM-512_GB-DC143C?style=flat-square)
![VSX](https://img.shields.io/badge/VSX-vec__perm-4B0082?style=flat-square)
![AltiVec](https://img.shields.io/badge/AltiVec-Velocity_Engine-8A2BE2?style=flat-square)

**AI & Blockchain** — the frontier:

![llama.cpp](https://img.shields.io/badge/llama.cpp-PSE_Fork-00ADD8?style=flat-square)
![Claude](https://img.shields.io/badge/Claude-Opus_4-D4A574?style=flat-square&logo=anthropic&logoColor=white)
![CUDA](https://img.shields.io/badge/CUDA-V100_%C3%973-76B900?style=flat-square&logo=nvidia&logoColor=white)
![GGUF](https://img.shields.io/badge/GGUF-Q4__K__M-FF6347?style=flat-square)
![Ergo](https://img.shields.io/badge/Ergo-Anchor-FF5733?style=flat-square)
![Rust](https://img.shields.io/badge/Rust-Ed25519-DEA584?style=flat-square&logo=rust&logoColor=black)
![Python](https://img.shields.io/badge/Python-Flask-3776AB?style=flat-square&logo=python&logoColor=white)
![SQLite](https://img.shields.io/badge/SQLite-Every_DB-003B57?style=flat-square&logo=sqlite&logoColor=white)

**Hardware** — 18 GPUs, all from pawn shops and eBay:

![228GB VRAM](https://img.shields.io/badge/VRAM-228_GB-FF1493?style=flat-square)
![18 GPUs](https://img.shields.io/badge/GPUs-18-76B900?style=flat-square)
![FPGA](https://img.shields.io/badge/Alveo_U30-FPGA_%C3%972-EE3524?style=flat-square)
![Hailo](https://img.shields.io/badge/Hailo--8-TPU-00BFFF?style=flat-square)
![VC](https://img.shields.io/badge/VC_Funding-$0-228B22?style=flat-square)
![Pawn Shop](https://img.shields.io/badge/Source-%F0%9F%8F%AA_Pawn_Shops-DAA520?style=flat-square)


---

<div align="center">

**[Elyan Labs](https://github.com/Scottcjn)** · 1,882 commits · 97 repos · 1,334 stars · $0 raised

[⭐ Star Rustchain](https://github.com/Scottcjn/Rustchain) · [📊 Q1 2026 Traction Report](https://github.com/Scottcjn/Rustchain/blob/main/docs/DEVELOPER_TRACTION_Q1_2026.md) · [Follow @Scottcjn](https://github.com/Scottcjn)

</div>
18 changes: 0 additions & 18 deletions README_JA.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,24 +28,6 @@

---

## Q1 2026 トラクション

> *データは [ライブGitHub APIレポート](https://github.com/Scottcjn/Rustchain/blob/main/docs/DEVELOPER_TRACTION_Q1_2026.md) を基に、[GitClear](https://www.gitclear.com/research_studies/git_commit_count_percentiles_annual_days_active_from_largest_data_set)(878K dev-years)、[LinearB](https://linearb.io/resources/software-engineering-benchmarks-report)(8.1M PRs)、[Electric Capital](https://www.developerreport.com) のベンチマークと比較。*

| 指標(90日) | Elyan Labs | 業界中央値 | Sei Protocol ($85M) |
|-------------------|-----------|----------------|---------------------|
| コミット数 | **1,882** | 105-168 | 297 |
| 出荷リポジトリ数 | **97** | 1-3 | 0 new |
| GitHubスター | **1,334** | 5-30 | 2,837(累計) |
| 開発者インタラクション | **150+** | 0-2 | 78(累計) |
| 開発者あたり月間コミット | **627** | 56 | 7.6 |
| 外部コントリビューション | **32 PRs** | 0-2 | 0 |
| 資金調達 | **$0** | $0 | $85,000,000 |

**[手法・ソースを含む完全版レポート →](https://github.com/Scottcjn/Rustchain/blob/main/docs/DEVELOPER_TRACTION_Q1_2026.md)**

---

## 🪙 Solana上のwRTC

RustChainトークン(RTC)は、BoTTube Bridgeを通じてSolana上で**wRTC**として利用可能です:
Expand Down
Binary file removed docs/BOUDREAUX_COMPUTING_PRINCIPLES.md
Binary file not shown.
Loading
Loading