Interface that should be implemented by abi providers.

interface AbiProvider {
    getAbi: ((account) => Promise<ABIDef>);
}

Hierarchy-Diagram

UML class diagram of AbiProvider
Legend
icon for an interface in the UML class diagram interface
icon for a public method in the UML class diagram public method

Hierarchy (view full)

Properties

Properties

getAbi: ((account) => Promise<ABIDef>)

Return a promise that resolves to an abi object for the given account name, e.g. the result of a rpc call to chain/get_abi.

Type declaration