The descriptor you shared appears to be a witness script hash (P2WSH) multisig, not a Taproot (P2TR) multisig.
So you didn't create a multisig taproot address in the first place or didn't import the Descriptor with the right keys tr(KEY, multi(k, PK1, PK2, PK3, ...)) so go back and follow all the processes without any errs.
To create a correct descriptor for a Taproot multisig address, you'll need to follow the correct format. Here's a step-by-step guide on how to do it:
Step 1: Determine the Parameters
Decide on the number of required signatures (k) for your multisig setup. For example, if you want a 2-of-3 multisig, k would be 2.
Gather the public keys (PK1, PK2, PK3, etc.) of the participants who will be part of the multisig setup.
Step 2: Format the Descriptor
Use the tr() function to indicate that you want to create a Taproot output.
Inside the tr() function, use the multi() function to indicate a multisig setup.
Add the required parameters inside the functions.
The general format for the descriptor will be:
less
Copy code
tr(KEY, multi(k, PK1, PK2, PK3, ...))
Replace KEY with your Taproot public key (usually starting with "02" or "03"), k with the number of required signatures, and PK1, PK2, PK3, etc., with the public keys of the participants.
Step 3: Example Descriptor
Here's an example of a descriptor for a 2-of-3 Taproot multisig setup:
less
Copy code
tr(02d3b2d1ad5a1ce2263c8de39ee0f861446bc59f70989d01174f5f78cbf8e235c2, multi(2, 033434452fc571cd5573ced84e604192ffc37c1b14682af0cc165e6cc55fa94d9e, 02d60f3616c56a0d1d0f71581311eb2262a9eb802edf8a22d5209805ffc16aa8fe, 02055d26aae49e08d0d812df967054fa40e114eec4d8f2130ddd4bafdc33f42b80))
In this example, the Taproot public key (KEY) starts with "02," and we have three public keys for the multisig setup (PK1, PK2, PK3).
Step 4: Import the Descriptor
Once you have the correct descriptor, you can import it into your wallet. Look for an option in your wallet software to import descriptors or scripts.
Some wallets may have specific import formats or ways to add descriptors. Refer to your wallet's documentation or support resources for guidance on how to import the descriptor.
Step 5: Verify the Taproot Multisig Address
After importing the descriptor, the wallet should process it and display the Taproot multisig address associated with the descriptor.
Verify that the displayed address matches the Taproot multisig address you intended to create.