@vafanassieff/bitcoin-cli-ts
Version:
Auto-generated Bitcoin client library for bitcoind JSON-RPC API
14 lines • 538 B
JavaScript
// Auto synced from github actions. Don't change this file
import request from '../../rpc-request.js';
/**
* gettxoutsetinfo ( "hash_type" hash_or_height use_index )
*
* Returns statistics about the unspent transaction output set.
* Note this call may take some time if you are not using coinstatsindex.
*
*/
export function getTxOutsetInfo(params) {
const { bitcoind, ...methodParams } = params;
return request({ method: 'gettxoutsetinfo', params: methodParams }, bitcoind);
}
//# sourceMappingURL=get-tx-outset-info.js.map