// features · l1
L1 Blockchain
VouchGPU runs a Solana-anchored attestation layer dedicated to verifiable GPU computation. Validators don't just settle payments — they re-execute and slash dishonest claims.
Why a dedicated L1
Solana already settles billions of transactions per day, but it doesn't natively verify GPU computation. VouchGPU's L1 is a specialized layer that commits state roots to Solana for finality, while running its own consensus optimized for compute-attestation throughput.
What the L1 does
- Receives inference attestations from hosts after each compute cycle. Each attestation contains: input hash, output hash, GPU model fingerprint, timestamp.
- Samples randomly a subset of cycles per epoch and assigns validators to re-execute.
- Compares outputs. If re-execution matches (within numerical tolerance), the host gets paid. If it diverges, slashing kicks in.
- Settles to Solana. Every epoch's state root is committed to a Solana program for finality.
Architecture diagram
┌──────────────┐ inference job ┌──────────────┐
│ Renter │ ───────────────→ │ Host GPU │
└──────────────┘ ←─ output ─── └──────┬───────┘
│
attestation
│
▼
┌──────────────────┐
│ VouchGPU L1 │
│ (attestation, │
│ sampling, │
│ slashing) │
└────────┬─────────┘
│
epoch state roots
▼
┌──────────────────┐
│ Solana mainnet │
│ (finality + │
│ settlement) │
└──────────────────┘
Throughput
- Attestations / second: ~12,000 (per current validator set)
- Re-execution sample rate: 2-5% of cycles, randomly assigned
- Time to finality on Solana: ~400ms per epoch commit
- Validator set: targeting 100 active at mainnet maturity
Differences from EVM L1s
| Aspect | EVM rollup | VouchGPU L1 |
|---|---|---|
| Optimized for | Smart contract state | Compute attestation |
| Settlement | Ethereum L1 | Solana mainnet |
| Sampling | Fraud proofs (week-long) | Same-epoch re-execution |
| Block time | 2-12s | 400ms (matches Solana) |
No "rollup" in the marketing sense
We don't call this a rollup because we don't post tx data to Solana for replay — we post commitments and let validators dispute. The economic security model is closer to optimistic rollups with shorter dispute windows enabled by Solana finality.