0
0
Fork 0
mirror of https://github.com/bitcoin/bitcoin.git synced 2025-03-05 14:06:27 -05:00

doc: add {import,list}descriptors to list of descriptor RPCs

This commit is contained in:
Sebastian Falbesoner 2022-08-24 23:59:30 +02:00
parent 1420547ec3
commit 6242314ba8

View file

@ -11,13 +11,16 @@ Supporting RPCs are:
addresses. addresses.
- `listunspent` outputs a specialized descriptor for the reported unspent outputs. - `listunspent` outputs a specialized descriptor for the reported unspent outputs.
- `getaddressinfo` outputs a descriptor for solvable addresses (since v0.18). - `getaddressinfo` outputs a descriptor for solvable addresses (since v0.18).
- `importmulti` takes as input descriptors to import into the wallet - `importmulti` takes as input descriptors to import into a legacy wallet
(since v0.18). (since v0.18).
- `generatetodescriptor` takes as input a descriptor and generates coins to it - `generatetodescriptor` takes as input a descriptor and generates coins to it
(`regtest` only, since v0.19). (`regtest` only, since v0.19).
- `utxoupdatepsbt` takes as input descriptors to add information to the psbt - `utxoupdatepsbt` takes as input descriptors to add information to the psbt
(since v0.19). (since v0.19).
- `createmultisig` and `addmultisigaddress` return descriptors as well (since v0.20) - `createmultisig` and `addmultisigaddress` return descriptors as well (since v0.20).
- `importdescriptors` takes as input descriptors to import into a descriptor wallet
(since v0.21).
- `listdescriptors` outputs descriptors imported into a descriptor wallet (since v22).
This document describes the language. For the specifics on usage, see the RPC This document describes the language. For the specifics on usage, see the RPC
documentation for the functions mentioned above. documentation for the functions mentioned above.