chia-agent
Version:
chia rpc/websocket client library
15 lines (14 loc) • 451 B
TypeScript
import { bytes32 } from "../wheel/python/sized_bytes";
import { bool, bytes } from "../../chia/types/_python_types_";
import { uint64, uint8 } from "../wheel/python/sized_ints";
import { ClassgroupElement } from "./classgroup";
export type VDFInfo = {
challenge: bytes32;
number_of_iterations: uint64;
output: ClassgroupElement;
};
export type VDFProof = {
witness_type: uint8;
witness: bytes;
normalized_to_identity: bool;
};