@nori-zk/proof-conversion
Version:
Verifying zkVM proofs inside o1js circuits, to generate Mina compatible proof
13 lines (12 loc) • 505 B
TypeScript
import { ComputationalStage, ComputationPlan } from '../../plan.js';
export interface PlatformFeatures {
platformName: 'linux' | 'windows' | 'darwin';
numactl?: boolean;
numaNodes?: number;
}
export declare class PlatformFeatureDetectionComputationalPlan implements ComputationPlan<PlatformFeatures, PlatformFeatures, undefined> {
__inputType: undefined;
name: string;
stages: ComputationalStage<PlatformFeatures>[];
then(state: PlatformFeatures): Promise<PlatformFeatures>;
}