zkverifyjs
Version:
Submit proofs to zkVerify and query proof state with ease using our npm package.
13 lines • 391 B
TypeScript
export interface UltraHonkProof {
proof: string;
}
export interface UltraHonkVk {
vk: string;
}
export type VariantUltraHonkProof = Record<string, string>;
export type VersionedUltraHonkProof = Record<string, Record<string, string>>;
export type VersionedUltraHonkVk = Record<string, string>;
export interface UltraHonkPubs {
pubs: string[];
}
//# sourceMappingURL=types.d.ts.map