UNPKG

bitcoin-cli-ts

Version:

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

15 lines (14 loc) 552 B
// Auto synced from github actions. Don't change this file import { __rest } from "tslib"; import request from '../../rpc-request'; /** * 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) { var bitcoind = params.bitcoind, methodParams = __rest(params, ["bitcoind"]); return request({ method: 'gettxoutsetinfo', params: methodParams }, bitcoind); }