@vafanassieff/bitcoin-cli-ts
Version:
Auto-generated Bitcoin client library for bitcoind JSON-RPC API
13 lines • 485 B
JavaScript
// Auto synced from github actions. Don't change this file
import request from '../../rpc-request.js';
/**
* gettxspendingprevout [{"txid":"hex","vout":n},...]
*
* Scans the mempool to find transactions spending any of the given outputs
*
*/
export function getTxSpendingPrevout(params) {
const { bitcoind, ...methodParams } = params;
return request({ method: 'gettxspendingprevout', params: methodParams }, bitcoind);
}
//# sourceMappingURL=get-tx-spending-prevout.js.map