export interface RawInvokeReceipt extends TransactionReceipt {
readonly state: keyof typeof VMState;
readonly script: Buffer;
readonly gasConsumed: BigNumber;
readonly stack: readonly ContractParameter[] | string;
readonly notifications: readonly RawNotification[];
readonly logs: readonly RawLog[];
}