ontology-ts-sdk
Version:
Comprehensive TypeScript library for the Ontology blockchain.
14 lines (13 loc) • 372 B
TypeScript
import { Parameter } from './parameter';
/**
* Describes the Abi function
*/
export default class AbiFunction {
name: string;
returntype: string;
parameters: Parameter[];
constructor(name: string, returntype: string, parameters: Parameter[]);
getParameter(name: string): any;
setParamsValue(...args: Parameter[]): void;
toString(): string;
}