UNPKG

@vafanassieff/bitcoin-cli-ts

Version:

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

14 lines 666 B
// Auto synced from github actions. Don't change this file import request from '../../rpc-request.js'; /** * descriptorprocesspsbt "psbt" ["",{"desc":"str","range":n or [n,n]},...] ( "sighashtype" bip32derivs finalize ) * * Update all segwit inputs in a PSBT with information from output descriptors, the UTXO set or the mempool. * Then, sign the inputs we are able to with information from the output descriptors. * */ export function descriptorProcessPsbt(params) { const { bitcoind, ...methodParams } = params; return request({ method: 'descriptorprocesspsbt', params: methodParams }, bitcoind); } //# sourceMappingURL=descriptor-process-psbt.js.map