UNPKG

bitcoin-cli-ts

Version:

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

13 lines (12 loc) 382 B
import { Bitcoind } from '../../types'; type GetaddrmanInfoParams = { bitcoind: Bitcoind; }; /** * 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 declare function getaddrmanInfo(params: GetaddrmanInfoParams): Promise<any>; export {};