bitcoin-cli-ts
Version:
Auto-generated Bitcoin client library for bitcoind JSON-RPC API
15 lines (14 loc) • 383 B
TypeScript
import { Bitcoind } from '../../types';
type GetAddedNodeInfoParams = {
bitcoind: Bitcoind;
node?: string;
};
/**
* getaddednodeinfo ( "node" )
*
* Returns information about the given added node, or all added nodes
* (note that onetry addnodes are not listed here)
*
*/
export declare function getAddedNodeInfo(params: GetAddedNodeInfoParams): Promise<any>;
export {};