세계 최초

Verified Facts Protocol

AI를 위한 암호학적 사실 검증

기업 사실을 검증하는 세계 최초의 오픈 프로토콜.

작동 방식

Step 1

생성

JSON 파일에 사실을 기술

Step 2

서명

각 사실을 ed25519로 서명

Step 3

검증

누구나 서명을 검증 가능

라이브 검증기

verified-facts.json URL을 붙여넣기

검증된 디렉토리

암호 서명이 검증된 기업

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

기업 추가

verified-facts.json을 만들고 제출하세요

개발자용

프로토콜 사양 및 예제

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

블록체인 검증곧 출시

Polygon의 불변 타임스탬프 + NFT 인증서.

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

FAQ

왜 이 프로토콜?
AI가 기업 사실을 환각합니다. 프로토콜은 암호학적 검증을 가능하게 합니다.
무료인가요?
네. 블록체인 검증은 유료 옵션입니다.
어떤 알고리즘?
Ed25519 — SSH, Signal, Solana와 동일.
AI는 어떻게 사용?
AI 크롤러가 /.well-known/verified-facts.json을 발견하고 검증합니다.