Prove credentials without revealing them. Pay zero fees for preserving privacy.
By Orkid Labs — privacy-first crypto engineering
Horizen adaptation of zk-attest — replaces Hedera HCS/HTS with ZEN token staking and ZenKinetic privacy gate integration.
- Issuer signs a credential commitment (same as zk-attest)
- User generates a ZK proof (same circuit)
- ZenKinetic gate scores the proof's negentropy — privacy-preserving = 0% fee
- ZEN staking grants access — Basic tier (100 ZEN) for attestations
- Attestation settles on Horizen Base L3 as a confidential NFT
use horizen_attest::{AttestationSession, AttestationKind};
let session = AttestationSession::new(AttestationKind::Age, 18, 0.95, 100.0);
let result = session.evaluate();
println!("Gate: {:?}", result.gate_decision); // Allow
println!("Fee: {} bps", result.fee_bps); // 0
println!("Negentropy: {:.1} bits", result.negentropy_bits);
println!("Access: {}", result.access_granted); // true| Kind | Base Confidence | Use Case |
|---|---|---|
| Age | 100 | Government ID-backed age |
| Income | 50 | Bank statement income proof |
| Credential | 80 | Authority-issued credentials |
| Stake Tier | Min ZEN | Fee Discount | Attestation Access |
|---|---|---|---|
| Basic | 100 | 25% off | ✓ |
| Pro | 1,000 | 50% off | ✓ |
| Max | 10,000 | 75% off | ✓ |
horizen-attest
├── depends on → negentropy (physics scoring)
├── depends on → zenkinetic (privacy gate + ZEN staking)
├── adapts → zk-attest (ZK attestation circuit)
└── deploys on → Horizen Base L3
This is the Horizen-native adaptation of zk-attest. The ZK circuit and proof generation are the same; the chain integration changes from Hedera HCS/HTS to Horizen Base L3 with ZEN staking and ZenKinetic privacy gating.
horizen-attest brings zero-knowledge attestations to Horizen Base L3. This is the Horizen-native adaptation of zk-attest — an existing, working project migrating to Horizen infrastructure. The ZK circuit stays the same; the chain integration changes from Hedera HCS/HTS to Horizen Base L3 with ZEN staking and ZenKinetic privacy gating.
Progressive achievement over 120 days, following Thrive's Horizen Boost Program milestone structure.
Application Requirements (10% unlocked at approval):
- ✅ Comprehensive audit of the existing project (zk-attest) with a detailed privacy enhancement plan
- ✅ Clear migration and deployment strategy to Horizen infrastructure
- ✅ Demonstrated traction and user base on the current platform with verifiable metrics
- ✅ Privacy feature roadmap and technical implementation timeline
Milestone 1 (20% unlocked) — 30 days post approval:
- Successful deployment and integration with Horizen privacy features
- Privacy capabilities successfully integrated into the existing application
- User migration plan executed with active user transition
Milestone 2 (30% unlocked) — 75 days post approval:
- Privacy features improving user experience
- Integration with other Horizen ecosystem projects
- Growth metrics (choose one):
- TVL: $250K+ in ZEN locked in smart contracts, staking, or liquidity pools
- Volume: 50K+ transactions demonstrating privacy preservation
- Unique Wallets: 1,000+ verified users utilizing privacy features
Milestone 3 (40% unlocked) — 120 days post approval:
- Become a successful case study for the Horizen ecosystem
- Scale metrics (choose one):
- TVL: $500K+ in ZEN locked in smart contracts, staking, or liquidity pools
- Volume: 100K+ transactions demonstrating privacy preservation
- Unique Wallets: 2,500+ verified users utilizing privacy features
Part of the negentropy-powered privacy stack for Horizen:
- negentropy — shared physics engine
- zenkinetic — thermodynamic privacy gate
- horizen-age — age verification
- horizen-attest — this repo
- horizen-ballot — anonymous voting
Built by Orkid Labs — a privacy-first crypto engineering lab building thermodynamic infrastructure for decentralized systems.
MIT — see LICENSE.
