I am making an attempt to import a Pay-to-Witness-Script-Hash (P2WSH) descriptor into my Bitcoin Core watch-only pockets utilizing the importdescriptors
command. My purpose is to make sure that the pockets displays all balances and transactions ever created with that particular locking script. Nonetheless, I am working into a number of points:
-
Checksum Errors:
-
Lively Descriptor Should Be Ranged:
-
Success With out Lively Flag:
- The descriptor is imported efficiently solely when
energetic
is ready tofalse
, however this does not fulfill my requirement of monitoring all balances and transactions associated to the descriptor.
- The descriptor is imported efficiently solely when
Right here’s an instance of one in every of my import makes an attempt:
importdescriptors '[{
"desc": "wsh(raw(630320830cb17521024e24d2aff4e1c51eaf122e0e5a6dfe218f7b3b883d1eb537ce9a7e040b329ca5ac6703b0830cb17521030618b7d1a6747cb13bba78611646a8d08c3683e14a0d2a4483c877561e1416efac68)#v6fytvxx)",
"timestamp": "now",
"active": true,
"internal": false,
"label": "My WSH Descriptor"
}]'
I wish to perceive:
- accurately format and embody the checksum for the descriptor.
- correctly set the descriptor as energetic whereas guaranteeing it displays all related balances and transactions.
- What adjustments are wanted to accurately import the descriptor with all mandatory flags?
Any steering or examples could be significantly appreciated!