export interface ContractMethodDescriptorClient {
readonly name: string;
readonly parameters?: readonly ABIParameter[]; // TODO: should be be optional or no?
readonly returnType: ABIReturn; // TODO: should this be ContractParameterType?
readonly offset: number;
readonly safe: boolean;
readonly constant?: boolean;
readonly receive?: boolean;
}