From cddbad325d308d60c76afb1d732ff910ae8cda70 Mon Sep 17 00:00:00 2001 From: Pablo Martin Date: Fri, 3 Jul 2026 11:36:22 -0300 Subject: [PATCH] doc: Add release notes for 32489 (exportwatchonlywallet RPC) --- doc/release-notes-32489.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 doc/release-notes-32489.md diff --git a/doc/release-notes-32489.md b/doc/release-notes-32489.md new file mode 100644 index 00000000000..e8a0eabc869 --- /dev/null +++ b/doc/release-notes-32489.md @@ -0,0 +1,15 @@ +New RPCs +-------- + +A new `exportwatchonlywallet` RPC creates a watchonly wallet file from an +existing descriptor wallet. The exported file contains the wallet's public +descriptors (with derived key caches where needed), transactions, and address +book data, but no private keys. It can be imported on another node using the +existing `restorewallet` RPC. + +Wallet +------ + +The [Offline Signing Tutorial](/doc/offline-signing-tutorial.md) has been +updated to use `exportwatchonlywallet` for setting up the online watch-only +wallet, replacing the previous manual descriptor import workflow.