Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
17 commits
Select commit Hold shift + click to select a range
e408582
feat: Port RustChain miner to Rust with 7 hardware fingerprint checks…
yifan19860831-hub Mar 12, 2026
dcd6e8b
feat: Port RustChain miner to Rust with 7 hardware fingerprint checks…
yifan19860831-hub Mar 12, 2026
ad9bac8
feat: Port RustChain miner to Rust with 7 hardware fingerprint checks…
yifan19860831-hub Mar 12, 2026
f8083a1
feat: Add comprehensive load test suite for RustChain API (#1614)
Mar 12, 2026
eb95bb8
feat: React Native mobile wallet app with balance/QR/tx history - Fix…
Mar 12, 2026
e895a5f
feat: Add Postman collection for RustChain API (Bounty #1617)
Mar 12, 2026
3658740
feat: Create Telegram bot for RustChain notifications
yifan19860831-hub Mar 12, 2026
4caf855
feat: Add RustChain sticker pack with multiple sizes and formats
yifan19860831-hub Mar 12, 2026
ccb5754
[BOUNTY #1639] Create RustChain brand assets pack
ileons2009 Mar 12, 2026
3337abf
Add RustChain Security Best Practices Guide
ileons2009 Mar 12, 2026
7d8de55
Sync with upstream Scottcjn/rustchain-bounties/main
yifan19860831-hub Mar 12, 2026
b63df33
Remove workflows for push
yifan19860831-hub Mar 12, 2026
17efa76
docs: Add RustChain security audit checklist (fixes #1654)
ileons2009 Mar 12, 2026
2a2eca7
docs: add RustChain network topology documentation (#1668)
Mar 12, 2026
954934d
[BOUNTY #1670] Add RustChain backup and restore guide
Mar 12, 2026
9fb7407
docs: add comprehensive code review checklist (Fix #1681)
Mar 12, 2026
1776447
[BOUNTY #1682] Create RustChain environment variables guide (3 RTC)
Mar 12, 2026
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
34 changes: 0 additions & 34 deletions .github/workflows/auto-triage-claims.yml

This file was deleted.

160 changes: 0 additions & 160 deletions .github/workflows/bcos.yml

This file was deleted.

47 changes: 0 additions & 47 deletions .github/workflows/bounty-xp-tracker.yml

This file was deleted.

44 changes: 0 additions & 44 deletions .github/workflows/update-dynamic-badges.yml

This file was deleted.

53 changes: 49 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,50 @@
__pycache__/
*.pyc
# Generated by Cargo
/target/
**/target/

# Generated scan artifacts
reports/
# Cargo.lock for libraries (keep for binaries)
# Cargo.lock

# IDE and editors
.idea/
.vscode/
*.swp
*.swo
*~
.DS_Store

# RustAnalyzer
/rust-analyzer/

# Build output
*.rs.bk
*.pdb

# Keys and sensitive data (NEVER commit these!)
*.key
*.pem
*.bin
!Cargo.lock

# Config files with secrets
config.local.toml
.env
.env.local

# Test artifacts
*.out
*.log
test_*.bin

# Benchmarks
/criterion/

# Coverage
*.gcno
*.gcda
coverage/
*.lcov

# Profiling
*.profraw
*.profdata
Loading