@linenext/dapp-portal-sdk
Version:
Dapp Portal SDK
14 lines (13 loc) • 369 B
TypeScript
export type BureaucracyWorkerResponse = {
results: BureaucracyAnswerResponse[];
totalExecutionTime: number;
};
export type BureaucracyAnswerResponse = {
index: number;
answer: bigint;
};
export declare class BureaucracyReviewResult {
review: string;
totalCalculationTime: number;
constructor(review: string, totalCalculationTime: number);
}