| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
Post-Quantum Cryptocurrency with NIST-Standard Cryptography
Seeking Code Review: We actively welcome expert review from cryptographers, blockchain developers, and security researchers. See SECURITY.md and docs/THREAT-MODEL.md for how to engage.
Mainnet launched January 28, 2026. Download the node software and start mining real DIL coins today.
Website: dilithion.org
Quick Start:
git clone https://github.com/dilithion/dilithion.git
cd dilithion
make
./dilithion-node --mine --threads=4Pre-built binaries for Linux, macOS, and Windows are available on the Releases page.
Dilithion is a quantum-resistant cryptocurrency built from the ground up with post-quantum cryptography. Designed as "The People's Coin," Dilithion features CPU-friendly mining, an HD wallet with BIP39 mnemonics, and industry-standard NIST algorithms.
Dilithion is evolving beyond proof-of-work toward VDF fair mining with Digital DNA Sybil resistance -- eliminating hashrate advantages and reducing energy consumption by ~95%.
Phase 1 (Current): RandomX PoW + DFMP Phase 2 (Hybrid): RandomX + VDF (both accepted) Phase 3 (Future): VDF-Only + Digital DNA
Status: VDF implementation complete (46 tests passing). Testnet activation in progress. Mainnet activation pending community vote. See VDF_LOTTERY_PROPOSAL.md for full details.
Dilithion uses NIST-standardized post-quantum cryptography:
# Install dependencies
sudo apt-get install build-essential git cmake libleveldb-dev
# Clone repository
git clone https://github.com/dilithion/dilithion.git
cd dilithion
# Build dependencies
cd depends/randomx && mkdir build && cd build
cmake .. && make
cd ../../dilithium/ref && make
cd ../../..
# Compile Dilithion
make dilithion-node# Open MSYS2 MinGW64 terminal
cd /c/path/to/dilithion
make -j4# Basic node (relay only)
./dilithion-node
# Node with mining (8 threads)
./dilithion-node --mine --threads=8
# Custom configuration
./dilithion-node --datadir=~/.dilithion --rpcport=8332 --mineDilithion uses RandomX for fair, CPU-friendly mining.
| CPU | Cores | Hash Rate |
|---|---|---|
| Intel Core i9-12900K | 16 | ~1040 H/s |
| AMD Ryzen 9 5900X | 12 | ~845 H/s |
| Intel Core i7-12700 | 12 | ~780 H/s |
| AMD Ryzen 7 5800X | 8 | ~560 H/s |
Average: ~65 H/s per core
Dilithion includes a full Hierarchical Deterministic (HD) wallet:
See docs/HD_WALLET_USER_GUIDE.md for the complete wallet guide.
Dilithion provides a JSON-RPC 2.0 interface for programmatic access.
Endpoint: http://localhost:8332 Protocol: JSON-RPC 2.0 Transport: HTTP
curl http://localhost:8332 \
-X POST \
-H "Content-Type: application/json" \
-H "X-Dilithion-RPC: 1" \
-d '{"jsonrpc":"2.0","method":"getnewaddress","params":[],"id":1}'{
"jsonrpc": "2.0",
"result": "D7JS1ujrYsqZrb8p6H5TuSKKbqYPMbwjfV",
"id": 1
}Available Methods: getnewaddress, getbalance, getaddresses, getmininginfo, stopmining, help, and more.
See docs/RPC-API.md for complete documentation.
Mainnet launched: January 28, 2026
Hash: 0000009eaa5e7781ba6d14525c3f75c35444045b21ddafbbea61090db99b0bc3 Timestamp: 1737158400 nBits: 0x1e01fffe Coinbase: "Dilithion Mainnet v2.0.0 - Fair Launch Reset - Quantum-Resistant Digital Gold"
Dilithion includes comprehensive test coverage:
# Run all tests
make test
# Individual test suites
./phase1_test # Blockchain, mempool, fees
./miner_tests # Mining controller
./wallet_tests # Wallet, signatures, addresses
./rpc_tests # RPC server
./integration_tests # Full node integrationdilithion/ ├── src/ │ ├── consensus/ # Consensus rules, fees, VDF validation │ ├── crypto/ # SHA-3, RandomX integration │ ├── digital_dna/ # Digital DNA identity system (8 dimensions) │ ├── dfmp/ # Fair Mining Protocol (MIK identity) │ ├── miner/ # Mining controller │ ├── net/ # P2P networking │ ├── node/ # Blockchain storage, genesis │ ├── primitives/ # Block, transaction structures │ ├── rpc/ # RPC server │ ├── test/ # Test suites │ ├── vdf/ # VDF miner, cooldown tracker │ └── wallet/ # HD wallet, addresses, keys ├── depends/ │ ├── randomx/ # RandomX library │ ├── chiavdf/ # VDF library (class groups) │ └── dilithium/ # Dilithium library ├── docs/ # Documentation └── README.md
Dilithion is open source and welcomes contributions!
Dilithion is designed to resist attacks from quantum computers:
All cryptography uses NIST-standardized algorithms:
See SECURITY.md for how to report vulnerabilities.
Dilithion is released under the MIT License. See LICENSE for details.
Dilithion builds upon:
Cryptocurrency involves risk. Mine and use Dilithion responsibly.
Dilithion - The People's Coin
Quantum-safe cryptocurrency for everyone
Status: Mainnet LIVE
Version: v3.0.12
Website: dilithion.org
| Back | FazBrowse Home | New Git URL |