export interface BBConfig { bbBinaryPath: string; bbWorkingDirectory: string; /** Whether to skip tmp dir cleanup for debugging purposes */ bbSkipCleanup: boolean; numConcurrentIVCVerifiers: number; bbIVCConcurrency: number; } export interface ACVMConfig { /** The path to the ACVM binary */ acvmBinaryPath: string; /** The working directory to use for simulation/proving */ acvmWorkingDirectory: string; }