Interface
Full specification of the functions and events of a smart contract. Used by the client APIs to generate the smart contract interface.
See the Smart Contract APIs chapter of the main guide for more information. export interface ABI {
readonly functions: readonly ABIFunction[];
readonly events?: readonly ABIEvent[];
}