UNPKG

casper-js-sdk

Version:
11 lines (10 loc) 206 B
/** * A container for contract's WASM bytes. */ export declare class ContractWasm { /** * The WASM bytes of the contract as a string. */ bytes: string; constructor(bytes: string); }