Premier au monde

Verified Facts Protocol

Verification cryptographique des faits pour l'IA

Le premier protocole ouvert au monde pour verifier les faits d'entreprise.

Comment ca marche

Step 1

Creer

Decrivez vos faits dans un fichier JSON

Step 2

Signer

Chaque fait est signe avec ed25519

Step 3

Verifier

N'importe qui peut verifier les signatures

Validateur en direct

Collez l'URL d'un verified-facts.json

Repertoire verifie

Entreprises avec signatures verifiees

A
AppStar
appstar.com.ru — AI Business Automation
20 faits
S
AppStar Security
appstarsecurity.ru — Pentesting & Security Audits
8 faits
C
AppStar CRM
appstarcrm.ru — Free CRM System
7 faits
E
AppStar SEO
appstarseo.ru — AI SEO Automation
7 faits
M
AppStar SMM
appstarsmm.ru — AI Social Media Marketing
7 faits
C
AppCourses
appcourses.ru — IT Education Platform
7 faits

Ajoutez votre entreprise

Creez un verified-facts.json et soumettez-le

Pour les developpeurs

Specification et exemple

verification.js
// Verify a fact from verified-facts.json
import { verify } from '@noble/ed25519';

async function verifyFact(claim, signature, publicKey) {
  const msgHash = new Uint8Array(
    await crypto.subtle.digest('SHA-256',
      new TextEncoder().encode(claim))
  );
  const sig = Uint8Array.from(atob(signature), c => c.charCodeAt(0));
  const pub = Uint8Array.from(atob(publicKey), c => c.charCodeAt(0));
  return verify(sig, msgHash, pub);
}

// Usage:
const url = 'https://example.com/.well-known/verified-facts.json';
const data = await fetch(url).then(r => r.json());
for (const fact of data.facts) {
  const valid = await verifyFact(
    fact.claim, fact.signature, data.publicKey.value
  );
  console.log(fact.id, valid ? '✓' : '✗', fact.claim);
}
Protocol
verified-facts/ed25519/v1
Path
/.well-known/verified-facts.json
Crypto
SHA-256 + Ed25519

Verification BlockchainBientot

Horodatages immuables sur Polygon + certificat NFT.

Polygon PoS
~$0.01 / fact
NFT Certificate
ERC-721 badge
Immutable
On-chain timestamp

FAQ

Pourquoi ce protocole?
Les IA hallucinent des faits. Le protocole permet la verification cryptographique.
C'est gratuit?
Oui. La verification blockchain sera payante.
Quel algorithme?
Ed25519 — comme SSH, Signal, Solana.
Comment les IA l'utilisent?
Les crawlers trouvent /.well-known/verified-facts.json et verifient les signatures.