Skip to content

Commit 28d78de

Browse files
committed
Mention new PSBT RPCs in psbt.md
1 parent 35991b1 commit 28d78de

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

doc/psbt.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,15 +67,25 @@ hardware implementations will typically implement multiple roles simultaneously.
6767
input a PSBT, adds UTXO, key, and script data to inputs and outputs that miss
6868
it, and optionally signs inputs. Where possible it also finalizes the partial
6969
signatures.
70+
- **`utxoupdatepsbt` (Updater)** is a node RPC that takes a PSBT and updates it
71+
to include information available from the UTXO set (works only for SegWit
72+
inputs).
7073
- **`finalizepsbt` (Finalizer, Extractor)** is a utility RPC that finalizes any
7174
partial signatures, and if all inputs are finalized, converts the result to a
7275
fully signed transaction which can be broadcast with `sendrawtransaction`.
7376
- **`combinepsbt` (Combiner)** is a utility RPC that implements a Combiner. It
7477
can be used at any point in the workflow to merge information added to
7578
different versions of the same PSBT. In particular it is useful to combine the
7679
output of multiple Updaters or Signers.
80+
- **`joinpsbts`** (Creator) is a utility RPC that joins multiple PSBTs together,
81+
concatenating the inputs and outputs. This can be used to construct CoinJoin
82+
transactions.
7783
- **`decodepsbt`** is a diagnostic utility RPC which will show all information in
7884
a PSBT in human-readable form, as well as compute its eventual fee if known.
85+
- **`analyzepsbt`** is a utility RPC that examines an RPC and reports the
86+
next steps in the workflow if known, computes the fee of the resulting
87+
transaction, and estimates the weight and feerate if possible.
88+
7989

8090
### Workflows
8191

0 commit comments

Comments
 (0)