ethereum-waffle
Version:
Sweeter, faster and simpler than truffle.
18 lines • 502 B
TypeScript
export interface StandardContractJSON {
abi: any;
evm: {
bytecode: {
object: any;
};
};
}
export interface SimpleContractJSON {
abi: any[];
bytecode: string;
}
export declare type ContractJSON = StandardContractJSON | SimpleContractJSON;
export declare const isStandard: (data: ContractJSON) => data is StandardContractJSON;
export declare function hasByteCode(bytecode: {
object: any;
} | string): boolean;
//# sourceMappingURL=ContractJSON.d.ts.map