bitcoin-cli-ts
Version:
Auto-generated Bitcoin client library for bitcoind JSON-RPC API
18 lines (17 loc) • 791 B
JavaScript
// Auto synced from github actions. Don't change this file
import { __rest } from "tslib";
import request from '../../rpc-request';
/**
* gettxoutproof ["txid",...] ( "blockhash" )
*
* Returns a hex-encoded proof that "txid" was included in a block.
* NOTE: By default this function only works sometimes. This is when there is an
* unspent output in the utxo for this transaction. To make it always work,
* you need to maintain a transaction index, using the -txindex command line option or
* specify the block in which the transaction is included manually (by blockhash).
*
*/
export function getTxOutProof(params) {
var bitcoind = params.bitcoind, methodParams = __rest(params, ["bitcoind"]);
return request({ method: 'gettxoutproof', params: methodParams }, bitcoind);
}