export interface Contract {
readonly version: number;
readonly address: AddressString;
readonly script: BufferString;
readonly parameters: readonly ContractParameterType[];
readonly returnType: ContractParameterType;
readonly name: string;
readonly codeVersion: string;
readonly author: string;
readonly email: string;
readonly description: string;
readonly storage: boolean;
readonly dynamicInvoke: boolean;
readonly payable: boolean;
}