The quantum-proof currency built for the post-quantum era.
Lattice-based cryptography Β· Zero-knowledge proofs Β· Decentralized consensus
Quickstart β’ Why Hypercorn β’ Architecture β’ Tokenomics β’ Roadmap β’ Contributing
Current blockchain networks rely on elliptic curve cryptography (ECC) and RSA β algorithms that a sufficiently powerful quantum computer could break using Shor's algorithm. When that day comes, every wallet, every signature, and every transaction on legacy chains becomes vulnerable.
Hypercorn doesn't wait for that day. It's ready now.
π Quantum-Resistant by Default β Every transaction is signed using CRYSTALS-Dilithium (FIPS 204) and keys are encapsulated via CRYSTALS-Kyber (FIPS 203), both NIST post-quantum standards. No opt-in. No migration. Quantum security from block zero.
β‘ Husk Consensus β A novel proof-of-stake consensus mechanism that achieves finality in under 3 seconds with minimal energy consumption. Validators stake $CORN and participate in a layered attestation protocol inspired by shucking layers of a husk.
π΅οΈ zk-KERNEL Privacy β Optional zero-knowledge transaction layer powered by lattice-based zk-SNARKs. Prove validity without revealing sender, receiver, or amount.
π Silkchain Interoperability β Native cross-chain bridge protocol for trustless asset transfers between Hypercorn and EVM-compatible chains.
π Cob Smart Contracts β Turing-complete smart contract runtime with a Rust-based DSL designed for safety and formal verification.
- Rust >= 1.78
- Cargo
- OpenSSL 3.x
- 8 GB RAM minimum (16 GB recommended for validators)
# Clone the repository
git clone https://github.com/hypercorn-network/hypercorn.git
cd hypercorn
# Build from source
cargo build --release
# Run a local node
./target/release/hypercorn --config config/testnet.toml# Generate a new quantum-safe keypair
hypercorn wallet create --algo dilithium3
# Output:
# π½ Wallet created!
# Address: hc1qxy2kgdygjrsqtzq2n0yrf2493p83kkfj...
# Mnemonic: harvest quantum lattice shield ...
# β οΈ Store your mnemonic securely. It cannot be recovered.hypercorn tx send \
--to hc1qabc...def \
--amount 50.0 \
--fee 0.001 \
--signββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
β APPLICATION LAYER β
β Cob Smart Contracts Β· DApps Β· Wallets β
ββββββββββββββββββββββββββββββββββββββββββββββββββββββββ€
β PRIVACY LAYER β
β zk-KERNEL (lattice zk-SNARKs) β
ββββββββββββββββββββββββββββββββββββββββββββββββββββββββ€
β CONSENSUS LAYER β
β Husk PoS Β· Validator Attestation β
ββββββββββββββββββββββββββββββββββββββββββββββββββββββββ€
β NETWORK LAYER β
β libp2p Β· Gossip Protocol Β· Kademlia β
ββββββββββββββββββββββββββββββββββββββββββββββββββββββββ€
β CRYPTOGRAPHY LAYER β
β CRYSTALS-Dilithium Β· CRYSTALS-Kyber Β· SPHINCS+ β
ββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
| Function | Algorithm | NIST Standard | Security Level |
|---|---|---|---|
| Digital Signatures | CRYSTALS-Dilithium | FIPS 204 | Level 3 (AES-192 equivalent) |
| Key Encapsulation | CRYSTALS-Kyber | FIPS 203 | Level 3 |
| Hash-Based Signatures | SPHINCS+ | FIPS 205 | Level 5 (fallback) |
| Hashing | SHAKE-256 | FIPS 202 | 256-bit quantum |
| zk Proofs | Lattice-based zk-SNARKs | β | Post-quantum |
| Parameter | Value |
|---|---|
| Ticker | $CORN |
| Max Supply | 21,000,000,000 CORN |
| Block Time | ~2.8 seconds |
| Block Reward | 64 CORN (halving every 4 years) |
| Minimum Stake | 10,000 CORN |
| Transaction Fee Model | EIP-1559 style burn + tip |
Validator Rewards 45% βββββββββββββββββββββββββββββββββββββββββ
Ecosystem Fund 20% ββββββββββββββββββββββββββββββββββββββββ
Team & Advisors 15% ββββββββββββββββββββββββββββββββββββββββ
Public Sale 10% ββββββββββββββββββββββββββββββββββββββββ
Liquidity Mining 5% ββββββββββββββββββββββββββββββββββββββββ
Community Grants 5% ββββββββββββββββββββββββββββββββββββββββ
Team tokens are subject to a 4-year vesting schedule with a 1-year cliff.
- Throughput: ~4,200 TPS (testnet benchmarks)
- Finality: < 3 seconds
- Signature Size: ~2,420 bytes (Dilithium3)
- Public Key Size: ~1,952 bytes
- Minimum Validator Hardware: 4 cores, 16 GB RAM, 500 GB SSD, 100 Mbps
| Phase | Name | Target | Status |
|---|---|---|---|
| 0 | Germination | Q1 2026 | β Whitepaper & cryptographic audits |
| 1 | Seedling | Q2 2026 | π Public testnet launch |
| 2 | Stalk | Q4 2026 | π² Mainnet genesis + wallet releases |
| 3 | Tassel | Q2 2027 | π² zk-KERNEL privacy layer |
| 4 | Harvest | Q4 2027 | π² Silkchain bridge + Cob VM v2 |
| 5 | Golden | 2028+ | π² DAO governance + full decentralization |
hypercorn/
βββ core/ # Consensus engine & block processing
βββ crypto/ # Post-quantum cryptographic primitives
βββ network/ # P2P networking & gossip protocol
βββ cob-vm/ # Smart contract virtual machine
βββ zk-kernel/ # Zero-knowledge proof system
βββ wallet/ # CLI & SDK wallet implementation
βββ node/ # Full node binary
βββ config/ # Network configuration files
βββ docs/ # Technical documentation
βββ tests/ # Integration & fuzzing tests
We welcome contributions from cryptographers, systems engineers, and blockchain developers.
# Fork, clone, and create a branch
git checkout -b feat/your-feature
# Run the test suite
cargo test --all
# Run the linter
cargo clippy --all-targets
# Submit a PR against `develop`Please read CONTRIBUTING.md before submitting. All PRs require:
- Passing CI (tests + clippy + fmt)
- At least one reviewer approval
- Signed commits (DCO)
If you discover a vulnerability, do not open a public issue. Please email security@hypercorn.network with details. We operate a bug bounty program β responsible disclosures are rewarded.
Built for the post-quantum world. Grown from the kernel up.
Copyright Β© 2026 Hypercorn Foundation. Released under the MIT License.