UNPKG

koinos-rpc

Version:

Typescript library to communicate with Koinos API via RPC

12 lines (11 loc) 298 B
import { Client } from '../Client'; interface GetContractMetaResponse { meta: any; } export declare class ContractMetaStore { private readonly client; constructor(client: Client); getContractMeta(contractId: string): Promise<GetContractMetaResponse>; private call; } export {};