ethers.js/packages/cli/lib/solc.d.ts
2021-03-07 18:24:04 -05:00

18 lines
652 B
TypeScript

import { ethers } from "ethers";
export interface ContractCode {
interface: ethers.utils.Interface;
name: string;
compiler: string;
bytecode: string;
runtime: string;
}
export declare type CompilerOptions = {
filename?: string;
basedir?: string;
optimize?: boolean;
throwWarnings?: boolean;
};
export declare function customRequire(path: string): (name: string) => any;
export declare function wrapSolc(_solc: any): (source: string, options?: CompilerOptions) => Array<ContractCode>;
export declare const compile: (source: string, options?: CompilerOptions) => Array<ContractCode>;
//# sourceMappingURL=solc.d.ts.map