Maailmas esimene

Verified Facts Protocol

Kruptograafiline faktide kontrollimine tehisintellekti jaoks

Maailma esimene avatud protokoll ettevotte faktide kontrollimiseks.

Kuidas see toötab

Step 1

Looge

Kirjeldage fakte JSON-failis

Step 2

Allkirjastage

Iga fakt allkirjastatakse ed25519-ga

Step 3

Kontrollige

Igauks saab allkirju kontrollida

Kontrollija

Kleepige verified-facts.json URL

Kontrollitud kataloog

Kontrollitud allkirjadega ettevotted

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

Lisage oma ettevote

Looge verified-facts.json ja esitage ulevaatamiseks

Arendajatele

Spetsifikatsioon ja naäide

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

Blockchaini kontrolliminePeagi

Muutumatud ajatemplid Polygonil + NFT-sertifikaat.

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

KKK

Miks see protokoll?
Tehisintellekt hallutsineerib fakte. Protokoll voïmaldab kruptograafilist kontrollimist.
Kas see on tasuta?
Jah. Blockchaini kontrollimine on tasuline.
Milline algoritm?
Ed25519 — sama mis SSH, Signal, Solana.
Kuidas tehisintellekt kasutab?
Roomajad leiavad /.well-known/verified-facts.json ja kontrollivad.