Status: Live (v1) — VAP v1 is operational. VAP v2 is validated (234 tests passing) but not yet deployed.
The Heartbeat of the Economy
VAP (Verifiable Attention Protocol) is the mechanism that transforms “playing a game” or “watching a stream” into verifiable work. It is the Proof of Engagement layer of the Render Network Protocol. Unlike traditional analytics which are fire-and-forget, VAP is a bidirectional, cryptographic handshake between the Client (User) and the Server (Verifier).Protocol Mechanics (v1 — Live)
VAP v1 operates over a secure WebSocket connection.1. The Handshake
When a session begins, the client must authenticate and establish a secure channel. Client -> Server (INIT)2. The Heartbeat (Pulse)
EveryN seconds (dynamic based on trust score), the client sends a Pulse proving liveness and state continuity.
Client -> Server (PULSE)
3. State Channels & Settlement
To scale to millions of concurrent users, VAP uses State Channels. We do not write every pulse to Solana.- Off-Chain Aggregation: The VAP Verifier maintains a session ledger in an in-memory store. It verifies signatures and the hash chain (Nonce
Nmust followN-1). - The Dispute Window: The session is kept optimistic. If the server detects cheating, it can slash the user’s reputation immediately.
- On-Chain Settlement: When the session ends, the Verifier submits a Settlement Transaction to Solana. Only the result (e.g., “User X earned 500 points”) is written on-chain.
Anti-Fraud Engine
VAP includes a multi-layered anti-fraud engine to ensure Proof of Human.Layer 1: Cryptographic Integrity
- Signature Verification: Every packet must be signed by the user’s wallet.
- Replay Protection: Nonces ensure packets cannot be replayed.
Layer 2: Behavioral Heuristics
The VAP Verifier analyzes theinputHash and gameStateHash.
- Entropy Analysis: Human input has high entropy (micro-jitters). Bots are too perfect or too random.
- Timing Analysis: Reaction times below physiological thresholds are flagged as suspicious.
- Reputation: Long-term wallet history affects Trust Score. Higher trust = longer pulse intervals.
Layer 3: Active Challenges (Turing Tests)
At random intervals, the server sends aCHALLENGE packet.
- “Click the Glitch”: An overlay appears in-game that must be clicked.
- “Input Sequence”: “Press UP, DOWN, A” within 2 seconds.
Integration Guide
Developers can integrate VAP into any HTML5 game using the VAP SDK.VAP v2 — Validated Design (Not Yet Deployed)
VAP v2 research is complete with 234 tests passing and all 5 attack trees validated as SECURE. This section documents the validated design that will replace v1. See also: VAP v2 Research Specification.Entity-Agnostic Design
Zero protocol components check entity type. No differential rates between human and AI participants. All staked participants are treated equally — the protocol does not care what you are, only what you contribute.Epoch-Based System
- Epoch Duration: 6 hours (4 per day).
- Batch Auctions: Advertisers bid for attention credits within each epoch. Settlement happens at epoch boundaries.
- Attention Credits: 1 AC = $0.001 USDC. The atomic unit of verified attention.
Stake-Based Participation
- Minimum Stake: 55,555 $555 tokens to participate.
- Stake Weight: Logarithmic formula
ln(1 + S/27,778)capped at 5.0. Diminishing returns prevent whale domination. - Activation: 7-day warmup period after staking.
- Maturation: Full weight reached at 90 days.
The Burn Loop
- Burn $555 at oracle price to mint equivalent Attention Credits.
- Advertisers bid ACs in epoch auctions for verified airtime.
- Contributors earn ACs based on stake-weighted verified engagement.
- ARP (10%) distributed to audience from auction proceeds.
ContributionProof
296-byte proof format containing session data, stake reference, and cryptographic signature. Entity-agnostic by design — the same proof format applies to all participants regardless of type.Validated Security Results
All 5 attack vectors tested and marked SECURE:| Attack Vector | ROI | Status |
|---|---|---|
| Sybil (identity splitting) | -81.7% | SECURE |
| Fabrication (fake engagement) | -179.7% | SECURE |
| Collusion (coordinated manipulation) | Negative | SECURE |
| Eclipse (network isolation) | Negative | SECURE |
| Griefing (economic disruption) | Negative | SECURE |
Governance Trinity
- ve$555 DAO: Token-weighted governance for protocol parameters.
- Algorithmic Layer: Automated parameter adjustment within DAO-set bounds.
- Alice Layer: Real-time operational decisions within algorithmic bounds.