AEVION GOV
DemoProofCityBenchmarksVetProofCompliancePricingVerifyTowns
Try Demo
AEVION GOV
aeviongov.com · Verify everything
HomeDemoProofCityVetProofCompliancePricingVerifyTownsFederalStandardsTechnologyResearchImpactContact
CAGE: 15NV7 | SDVOSB | Patent: 63/896,282
© 2026 Arena of Truth LLC | Sartell, MN | contracts@aevion.ai

> ProofNative_

PROOF OF EVERYTHING

The developer SDK for cryptographically verifiable AI.
Build trust. Ship proofs. Dominate compliance.

The Great Bifurcation - Rent Seekers vs. Kill Switch
npm install @proofnative/sdkView Examples

> Quick Start

STEP 1

Install SDK

npm install @proofnative/sdk
STEP 2

Initialize

import { ProofNative } from '@proofnative/sdk'

const pn = new ProofNative({
  apiKey: process.env.PN_API_KEY
})
STEP 3

Generate Proof

const proof = await pn.verify({
  model: 'gpt-4',
  prompt: 'Analyze claim',
  context: claimData
})

// proof.signature ✓
// proof.hash ✓
// proof.timestamp ✓

> SDK Features

CRYPTOGRAPHIC VERIFICATION. ZERO COMPROMISE.

Ed25519 Signatures

Every inference cryptographically signed with hardware-backed Ed25519 keys. <100μs signing time.

Zero-Knowledge Proofs

Prove correctness without revealing sensitive data. Patent-pending tri-modal architecture.

JET Energy Limits

Just-Enough-Thinking prevents context bombs and runaway inference costs. Budget enforcement.

Sovereign Proof Bundles

Self-contained cryptographic audit trails. Blockchain-anchored. Tamper-proof forever.

Multi-Model Support

OpenAI, Anthropic, Gemini, local models. LiteLLM unified gateway. One SDK, all providers.

TypeScript Native

Full type safety, IntelliSense autocomplete, comprehensive JSDoc. Developer experience first.

> API Reference

SIMPLE API. MAXIMUM SECURITY.

Verify Inference

POST
const proof = await proofnative.verify({
  model: 'claude-3.5-sonnet',
  prompt: 'Analyze VA disability claim',
  context: {
    veteran_id: '123456',
    conditions: ['PTSD', 'TBI'],
    evidence: [/* medical records */]
  },
  energy_limit: 50000, // JET tokens
  require_consensus: true
})

// Returns Sovereign Proof Bundle:
{
  proof_id: 'spb_7x9k2...',
  signature: 'ed25519_sig...',
  hash: 'sha256_...',
  timestamp: 1738454400,
  blockchain_anchor: 'polygon_0x...',
  proofScore: 0.987,
  reasoning_vectors: [...],
  audit_trail: [...]
}

Verify Proof Bundle

GET
const validation = await proofnative.validate({
  proof_id: 'spb_7x9k2...',
  verify_blockchain: true,
  verify_signature: true
})

// Returns validation result:
{
  valid: true,
  signature_valid: true,
  blockchain_confirmed: true,
  timestamp_verified: true,
  hash_integrity: 'PASS',
  sheriff_consensus: {
    agreement: 0.98,
    sheriffs: 5,
    collusion_score: 0.02
  },
  trust_score: 0.987
}

> Real-World Examples

PRODUCTION-READY. COMPLIANCE-FIRST.

VA Claims Processing

38 CFR compliant disability claims verification

// VetProof Integration
const claim = await proofnative.verify({
  model: 'gpt-4',
  prompt: vetproof.buildPrompt(claim),
  context: claim.evidence,
  compliance: '38_CFR',
  require_consensus: true
})

// Blockchain anchor for audit trail
await claim.anchor('polygon')

FAA Aviation Safety

Verifiable pilot medical certification analysis

// SkyProof Integration
const medical = await proofnative.verify({
  model: 'claude-3-opus',
  prompt: skyproof.analyzeMedical(pilot),
  context: medical.records,
  compliance: 'FAA_67',
  sheriff_count: 5
})

// Generate compliance report
const report = medical.generateFAAReport()

Financial Compliance

SEC-compliant trading algorithm verification

// Trading Algorithm Proof
const trade = await proofnative.verify({
  model: 'gpt-4-turbo',
  prompt: 'Verify trade compliance',
  context: algorithm.parameters,
  compliance: 'SEC_Reg_SCI',
  energy_limit: 100000
})

// Immutable audit trail
await trade.seal({ timestamp: true })

Healthcare HIPAA

HIPAA-compliant patient data processing

// Healthcare AI with ZK Proofs
const diagnosis = await proofnative.verify({
  model: 'claude-3.5-sonnet',
  prompt: 'Analyze patient symptoms',
  context: patient.encryptedData,
  compliance: 'HIPAA',
  zero_knowledge: true
})

// Proof without revealing PHI
const zkProof = diagnosis.zkProof()
Arena of Truth Neon Cyberpunk

Ready to Ship Proofs?

Join developers building the next generation of verifiable AI systems.
Get started in minutes. No credit card required.

View on GitHubRead DocsTry Demo
2.3K
GitHub Stars
850+
Developers
12M+
Proofs Generated
ProofNative

Proof of Everything

Developers

Quick StartAPI DocsExamplesSDK Reference

Resources

GitHubDiscordBlogChangelog

Legal

Patent 63/896,282CAGE: 15NV7SDVOSB Certified

© 2026 Arena of Truth LLC | Built by hackers, for developers_