UNPKG

@vafanassieff/bitcoin-cli-ts

Version:

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

13 lines 448 B
// Auto synced from github actions. Don't change this file import request from '../../rpc-request.js'; /** * getindexinfo ( "index_name" ) * * Returns the status of one or all available indices currently running in the node. * */ export function getIndexInfo(params) { const { bitcoind, ...methodParams } = params; return request({ method: 'getindexinfo', params: methodParams }, bitcoind); } //# sourceMappingURL=get-index-info.js.map