UNPKG

@vafanassieff/bitcoin-cli-ts

Version:

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

13 lines 511 B
// Auto synced from github actions. Don't change this file import request from '../../rpc-request.js'; /** * getaddrmaninfo * * Provides information about the node's address manager by returning the number of addresses in the `new` and `tried` tables and their sum for all networks. * */ export function getaddrmanInfo(params) { const { bitcoind, ...methodParams } = params; return request({ method: 'getaddrmaninfo', params: methodParams }, bitcoind); } //# sourceMappingURL=getaddrman-info.js.map