UNPKG

ontology-ts-sdk

Version:

Comprehensive TypeScript library for the Ontology blockchain.

14 lines (13 loc) 321 B
import AbiFunction from './abiFunction'; /** * Decribes the Abi info. */ export default class AbiInfo { static parseJson(json: string): AbiInfo; hash: string; entrypoint: string; functions: AbiFunction[]; getHash(): string; getEntryPoint(): string; getFunction(name: string): AbiFunction; }