// 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.

section · featureschain · Solana-anchored L1

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

  1. Receives inference attestations from hosts after each compute cycle. Each attestation contains: input hash, output hash, GPU model fingerprint, timestamp.
  2. Samples randomly a subset of cycles per epoch and assigns validators to re-execute.
  3. Compares outputs. If re-execution matches (within numerical tolerance), the host gets paid. If it diverges, slashing kicks in.
  4. 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

Differences from EVM L1s

AspectEVM rollupVouchGPU L1
Optimized forSmart contract stateCompute attestation
SettlementEthereum L1Solana mainnet
SamplingFraud proofs (week-long)Same-epoch re-execution
Block time2-12s400ms (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.