ZIPsZoo Proposals
ZIP-0419

Proof of AI Consensus (PoAI)

Final

Consensus mechanism where validators prove useful AI work (training, inference, verification) to earn block rewards

Type
Standards Track
Category
AI
Author
Zoo Labs Foundation
Created
2024-06-15
poaiproof-of-aiconsensusvalidationai-computeblockchain

ZIP-0419: Proof of AI Consensus (PoAI)

Abstract

This proposal specifies the Proof of AI (PoAI) consensus mechanism, where blockchain validators earn block rewards by proving they performed useful AI work -- model training, inference serving, or verification -- rather than solving arbitrary cryptographic puzzles (PoW) or merely staking tokens (PoS). PoAI turns the security budget of the blockchain into productive AI compute, creating a self-reinforcing cycle: more validators means more AI compute, better models attract more users, more users increase token value, higher value attracts more validators.

Motivation

Traditional consensus mechanisms waste energy (PoW) or rely on capital as a proxy for trust (PoS). Neither produces anything useful beyond securing the chain. PoAI reclaims the security budget by requiring validators to prove useful AI contributions:

  1. Training: Validators contribute compute to DSO training rounds (ZIP-0410)
  2. Inference: Validators serve model inference for conservation applications
  3. Verification: Validators verify the AI work of other validators

This aligns the blockchain's economic incentives with the Zoo mission: securing the network directly improves the AI models that power conservation.

Specification

Work Types

Work TypeDescriptionVerificationReward Weight
TrainingContribute gradient updates to DSOGradient verification + spot-check recompute3x
InferenceServe model inference with SLAResponse quality audit + latency check1x
VerificationVerify other validators' workMeta-verification by committee2x

Proof Protocol

  1. Validator commits to a work type and stake
  2. Coordinator assigns work (training shard, inference queue, verification target)
  3. Validator performs work and generates cryptographic proof:
    • Training proof: Hash of gradient + commitment to local data + compute attestation
    • Inference proof: Hash of (input, output, model_version) + latency measurement
    • Verification proof: Signed attestation of verified work's correctness
  4. Proof is submitted to the chain
  5. Random committee of verifiers spot-checks proofs
  6. Valid proofs earn block rewards; invalid proofs are slashed

Slashing Conditions

ViolationSlash AmountDescription
Invalid gradient5% stakeGradient fails verification
Inference hallucination2% stakeResponse contradicts grounded facts
False verification10% stakeApproved provably-invalid work
Downtime0.1% stake/hourFailed to serve assigned work

Hardware Requirements

TierGPUVRAMRole
LightRTX 4060+8 GBInference + verification
StandardRTX 4090 / A400016-24 GBTraining + inference
HeavyA100 / H10040-80 GBFull training + large model inference

Research Papers

Implementation

  • hanzo/aci: AI Chain Infrastructure with PoAI consensus
  • hanzo/node: Blockchain/AI node with PoAI validation
  • zoo/contracts: PoAI validator registration and slashing contracts

Timeline

  • Originated: June 2024 (PoAI protocol design)
  • Research: zoo-poai-consensus published Q3 2024
  • Implementation: PoAI consensus integrated into Hanzo ACI 2025