A proof-of-work blockchain with post-quantum security using CRYSTALS-Dilithium3 signatures.
Network: Mainnet (Magic: 0xe8f3e1e3)
Security: B+ Rating (83/100) - Critical issues fixed, minor issues remain
Mining: RandomX PoW with Stratum support
Nodes: 100+ global bootstrap nodes
Production Readiness: 90% - Testnet Ready, P2P & Maturity Complete
- Proven Consensus: Longest VALID chain rule, no checkpoints, no governance
- Quantum-Resistant: CRYSTALS-Dilithium3 post-quantum signatures (NIST-approved)
- Simple & Secure: No smart contracts, no DeFi, just value transfer
- Proof-of-Work: SHA-256d mining with RandomX support
- Memory Safety: 15 unsafe blocks (all justified), improved error handling
- Open Source: Apache 2.0, fully auditable, no backdoors
- Async-Powered: High-performance network layer with DoS protection
# Clone and build
git clone https://github.com/AlphaB135/BitQuan.git
cd BitQuan
cargo build --release
# Create your first post-quantum wallet
./target/release/bitquan-node wallet-gen --output my-wallet.keystore
# Get your quantum-resistant address
./target/release/bitquan-node wallet-address --keystore my-wallet.keystore# Initialize mainnet configuration
./target/release/bitquan-node init --network mainnet
# Start node
./target/release/bitquan-node --config config/mainnet.toml
# Mine genesis block (first time only)
./target/release/bitquan-node mine-genesis# Start mining with RandomX (CPU-friendly)
./target/release/bitquan-node mine --algorithm randomx
# Or mine with SHA256d (ASIC-friendly)
./target/release/bitquan-node mine --algorithm sha256d
# Join a mining pool
bitquan-miner --pool pool.bitquan.org:3333 --address YOUR_ADDRESSBitQuan is a cryptocurrency designed for 50+ year security resilience against quantum computing threats. It implements a proven consensus model with post-quantum cryptographic signatures, maintaining simplicity while ensuring long-term security against quantum attacks.
PRODUCTION READY - MAINNET LIVE
Last Security Audit: November 21, 2025 Security Score: 83/100 (Grade: B+) - Critical issues fixed, minor issues remain Production Readiness: 75% - Testnet Ready, Mainnet pending fixes
| Category | Score | Status |
|---|---|---|
| Error Handling | 25/30 | Good (192 unwrap() calls, target <50) |
| Memory Safety | 25/25 | Excellent (Panic-free) |
| Cryptography | 20/20 | Excellent (PQC verified) |
| Dependencies | 20/20 | Excellent (0 vulnerabilities) |
| Crypto Ops | 25/25 | Excellent (RNG perfect) |
| Input Validation | 20/20 | Excellent (Complete validation) |
| Total | 83/100 | B+ |
# Build
cargo build --release
# Run tests
cargo test --all --locked
# Generate wallet keypair (random)
./target/release/bitquan-node wallet-gen --output wallet.keystore
# Generate wallet from BIP39 mnemonic (deterministic recovery)
./target/release/bitquan-node wallet-gen-mnemonic
./target/release/bitquan-node wallet-from-mnemonic --phrase "your twelve word mnemonic phrase here..."
# Get wallet address
./target/release/bitquan-node wallet-address --keystore wallet.keystore
# Mine genesis block
./target/release/bitquan-node mine-genesis
# Start continuous mining
./target/release/bitquan-node mine- Fast PR (
.github/workflows/fast-pr.yml): Ubuntu-only, runs format, clippy (deny warnings & unwrap_used), cargo-deny, nextest, and coverage threshold (≥80% lines) without generating reports. Target: < 5–7 minutes. - Full Matrix (
.github/workflows/full-matrix.yml): On push tomainand nightly schedule. Tests on Ubuntu/macOS/Windows, generates HTML/LCOV coverage, builds extra targets (musl/aarch64/wasm), runs long fuzz, and nightly security audit.
Optional: add the full-ci label on a PR to run the full matrix on-demand.
- Getting Started - Installation and first steps
- CLI Tools - Command-line tools and guides
- Development - Build, test, contribute
- Operations - Deployment, monitoring, runbooks
- Security - Audits, bug bounty, disclosure policy
- Installation Guide - Mainnet installation
- Post-Quantum Cryptography: CRYSTALS-Dilithium3 signatures (NIST-approved)
- Proven Consensus: Longest chain rule, no governance, no checkpoints
- Proof-of-Work Mining: SHA-256d with RandomX support for CPU/GPU mining
- BIP39 Wallet Support: 12/24 word mnemonic phrases with deterministic recovery
- UTXO Model: Transaction model with 100-block coin maturity
- Block Weight System: 4MB blocks with 384 weight units per PQC signature
- Difficulty Adjustment: ASERT algorithm with quantum-aware adjustments
- Async P2P Networking: High-performance async network layer with DoS protection
- JSON-RPC API: Standard RPC interface
- Mining Pools: Stratum V1 protocol support for pool mining
- Memory Safety: 15 unsafe blocks (all justified), improved error handling
BitQuan uses an async network layer powered by tokio for:
- Slowloris Attack Protection: 30-second total timeout per message
- Scalability: Handle 100,000+ concurrent connections
- Efficiency: 4KB per connection vs 8MB with threads
Tokio Runtime
├─ P2P Server (accept loop)
│ └─ Per-peer handlers (spawned tasks)
├─ RPC Server (async)
└─ Mining (spawn_blocking thread pool)
- Memory: 2000x improvement (4MB vs 8GB for 1000 peers)
- Security: Immune to Slowloris attacks
- Performance: Non-blocking I/O throughout
BitQuan intentionally does NOT include:
- Smart Contracts: No scripting language or Turing-complete execution layer
- DeFi/DEX Features: No built-in decentralized exchange or DeFi protocols
- Governance Tokens: No on-chain voting, staking, or delegation mechanisms
- Alternative Consensus: Only Proof-of-Work (no PoS, DPoS, BFT variants)
- Experimental Cryptography: Only peer-reviewed, NIST-approved algorithms
- Marketing Gimmicks: No promises of "moon", "get rich quick", or unrealistic TPS claims
Philosophy: BitQuan does one thing well — quantum-resistant value transfer with simplicity and 50+ year security.
bitquan/
├── crates/ # Rust workspace crates
│ ├── consensus/ # Consensus rules and validation
│ ├── crypto/ # Cryptographic primitives
│ ├── mempool/ # Transaction pool
│ ├── network/ # P2P networking
│ ├── node/ # Main node implementation
│ ├── rpc/ # JSON-RPC server
│ ├── storage/ # Database backend
│ └── types/ # Core data structures
├── docs/ # Documentation
├── scripts/ # Utility scripts
└── bindings/ # Language bindings
- No backdoors, admin keys, or hidden switches
- GPG-signed commits and releases required
- Reproducible builds with attestation
- All core code open-source, auditable
- Comprehensive security audits completed
- Production readiness assessment: 85%
Report security vulnerabilities to: security@bitquan.org
See SECURITY.md for disclosure policy and response SLAs.
Current version: v0.0.2-alpha (testnet ready) Production Readiness: 90% Tests: 72 network tests + 10 reward maturity integration tests (all passing) Recent Updates:
- ✅ P2P TCP socket I/O implementation complete
- ✅ Reward maturity integration tests (100-block maturity)
- ✅ Code cleanup and documentation improvements
See docs/archive/ for historical audits and planning documents.
Requirements:
- Rust 1.82.0 or later (stable)
- RocksDB development libraries (optional, bundled by default)
# Install Rust
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
# Clone repository
git clone https://github.com/AlphaB135/BitQuan.git
cd BitQuan
# Build BitQuan
cargo build --release --locked
# Run full test suite
cargo test --all --locked
# Reproducible build
export SOURCE_DATE_EPOCH=1700000000
cargo build --release --lockedSee REPRODUCIBILITY.md for deterministic builds.
Apache License 2.0
See LICENSE for details.
- Repository: https://github.com/AlphaB135/BitQuan
- Issues: https://github.com/AlphaB135/BitQuan/issues
- Discussions: https://github.com/AlphaB135/BitQuan/discussions
- Security: security@bitquan.org
- Read CONTRIBUTING.md for guidelines
- Sign commits with GPG (
git commit -S) - Ensure all tests pass (
cargo test --all --locked) - Follow code style (
cargo fmt --all) - Pass linting (
cargo clippy --all-targets --all-features)
Optional: Enable pre-commit hooks with ./scripts/install-hooks.sh
BitQuan is a spare-time solo project. If it helps your work or research, you can keep it going in the following ways.
- Donate via PayPal. Funds cover AI assistants (~$200/mo), CI infrastructure, and external security reviews.
- Sponsor hardware or credits for long-running fuzzing, testnet nodes, or build runners—open an issue to coordinate.
- Commission specific hardening work (e.g., external audit prep) by discussing scope at
security@bitquan.org.
- Star, fork, or share the repository to help it reach other developers.
- File reproducible bug reports and security issues (see SECURITY.md).
- Submit pull requests for documentation, tests, or hardening tasks flagged in
docs/planning/todo.md. - Participate in GitHub Discussions and help new users get started.
- Donations are voluntary; they do not constitute a token sale, investment contract, or promise of returns.
- BitQuan stays Apache 2.0 open-source with or without funding; contributions pay for development only.
- Monthly operating target: ~$300 USD. Donation summaries are published quarterly in
FUNDING.md. - Questions about support or larger sponsorships: contact
security@bitquan.org.
BitQuan testnet is READY for testing and development.
Quick Start:
# Run testnet node
./target/release/bitquan-node --network testnet --config config/testnet.tomlNetwork Details:
- Network: testnet
- P2P Port: 19444
- RPC Port: 19443
- Status: READY FOR TESTING
- Faucet: coming soon
For full testnet documentation, see docs/testnet/README.md
