@provablehq/sdk
Version:
A Software Development Kit (SDK) for Zero-Knowledge Transactions
15 lines (14 loc) • 317 B
TypeScript
export interface SolutionsJSON {
version: BigInt;
solutions?: SolutionJSON[];
}
export interface SolutionJSON {
partial_solution: PartialSolutionJSON;
target: BigInt;
}
export interface PartialSolutionJSON {
solution_id: string;
epoch_hash: string;
address: string;
counter: BigInt;
}