UNPKG

ontology-ts-sdk

Version:

Comprehensive TypeScript library for the Ontology blockchain.

16 lines (15 loc) 291 B
import { StringReader } from '../utils'; export declare enum VmType { NativeVM = 255, NEOVM = 128, WASMVM = 144 } /** * @deprecated */ export declare class VmCode { static deserialize(sr: StringReader): any; vmType: VmType; code: string; serialize(): string; }