UNPKG

@proveanything/smartlinks

Version:

Official JavaScript/TypeScript SDK for the Smartlinks API

20 lines (19 loc) 559 B
/** * Represents a Proof object. */ export interface ProofResponse { /** Unique identifier for the collection */ collectionId: string; /** Creation timestamp */ createdAt: string; /** Unique identifier for the proof */ id: string; /** Unique identifier for the product */ productId: string; /** Unique identifier for the token */ tokenId: string; /** Unique identifier for the user */ userId: string; /** Arbitrary key-value pairs for proof values */ values: Record<string, any>; }