@vafanassieff/bitcoin-cli-ts
Version:
Auto-generated Bitcoin client library for bitcoind JSON-RPC API
17 lines • 545 B
TypeScript
import { Bitcoind } from '../../types.js';
type GetTxOutsetInfoParams = {
bitcoind: Bitcoind;
hash_type?: string;
hash_or_height?: string | number;
use_index?: boolean;
};
/**
* 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 declare function getTxOutsetInfo(params: GetTxOutsetInfoParams): Promise<any>;
export {};
//# sourceMappingURL=get-tx-outset-info.d.ts.map