@vafanassieff/bitcoin-cli-ts
Version:
Auto-generated Bitcoin client library for bitcoind JSON-RPC API
31 lines (27 loc) • 1.11 kB
text/typescript
// Auto synced from github actions. Don't change this file
import { Bitcoind } from '../../types.js'
import request from '../../rpc-request.js'
type UtxoUpdatePsbtParams = {
bitcoind: Bitcoind
/* A base64 string of a PSBT */
psbt: string
/* [
"", (string) An output descriptor
{ (json object) An object with an output descriptor and extra information
"desc": "str", (string, required) An output descriptor
"range": n or [n,n], (numeric or array, optional, default=1000) Up to what index HD chains should be explored (either end or [begin,end])
},
...
] */
descriptors?: Array<unknown>
}
/**
* utxoupdatepsbt "psbt" ( ["",{"desc":"str","range":n or [n,n]},...] )
*
* Updates all segwit inputs and outputs in a PSBT with data from output descriptors, the UTXO set, txindex, or the mempool.
*
*/
export function utxoUpdatePsbt(params: UtxoUpdatePsbtParams) {
const { bitcoind, ...methodParams } = params
return request({ method: 'utxoupdatepsbt', params: methodParams }, bitcoind)
}