Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Verify EarnProof credentials from TypeScript
const result = await client.verifyProof("proof_01JXYZ123");
const result = await client.verifyCredential(credentialJson);
type VerificationResult = { status: "valid" | "expired" | "revoked" | "invalid_signature" | "unknown_proof" | "unverified_issuer"; proofId?: string; claim?: Record<string, unknown>; issuer?: { id: string; name: string; }; expiresAt?: string; };