UNPKG

bitcoin-cli-ts

Version:

Auto-generated Bitcoin client library for bitcoind JSON-RPC API

13 lines (12 loc) 290 B
import { Bitcoind } from '../../types'; type GetPeerInfoParams = { bitcoind: Bitcoind; }; /** * getpeerinfo * * Returns data about each connected network peer as a json array of objects. * */ export declare function getPeerInfo(params: GetPeerInfoParams): Promise<any>; export {};