@vafanassieff/bitcoin-cli-ts
Version:
Auto-generated Bitcoin client library for bitcoind JSON-RPC API
17 lines • 546 B
TypeScript
import { Bitcoind } from '../../types.js';
type GetNodeAddressesParams = {
bitcoind: Bitcoind;
count?: number;
network?: string;
};
/**
* getnodeaddresses ( count "network" )
*
* Return known addresses, after filtering for quality and recency.
* These can potentially be used to find new peers in the network.
* The total number of addresses known to the node may be higher.
*
*/
export declare function getNodeAddresses(params: GetNodeAddressesParams): Promise<any>;
export {};
//# sourceMappingURL=get-node-addresses.d.ts.map