/* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ export type CallKcsSmartContractReadMethod = { /** * The address of the smart contract */ contractAddress: string; /** * Name of the method to invoke on smart contract. */ methodName: string; /** * ABI of the method to invoke. */ methodABI: any; params: Array; }