bitcoin-cli-ts
Version:
Auto-generated Bitcoin client library for bitcoind JSON-RPC API
15 lines (14 loc) • 455 B
TypeScript
import { Bitcoind } from '../../types';
type UtxoUpdatePsbtParams = {
bitcoind: Bitcoind;
psbt: string;
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 declare function utxoUpdatePsbt(params: UtxoUpdatePsbtParams): Promise<any>;
export {};