UNPKG

@openzeppelin/cli

Version:

Command-line interface for the OpenZeppelin smart contract platform

10 lines (9 loc) 437 B
import { RawContract, CompiledContract } from './SolidityContractsCompiler'; import { SolcBuild } from './CompilerProvider'; import { ProjectCompilerOptions } from '../ProjectCompilerOptions'; export declare function compileProject(options?: ProjectCompilerOptions): Promise<ProjectCompileResult>; export interface ProjectCompileResult { compilerVersion: SolcBuild; contracts: RawContract[]; artifacts: CompiledContract[]; }