UNPKG

zkverifyjs

Version:

Submit proofs to zkVerify and query proof state with ease using our npm package.

18 lines 373 B
export interface TeeProof { proof: string; } export interface TeeVk { vk: { tcbResponse: string; certificates: string; }; } export interface TeeIntelVk { tcb_response: string; certificates: string; } export type VariantTeeVk = Record<string, TeeIntelVk>; export interface TeePubs { pubs: string; } //# sourceMappingURL=types.d.ts.map