-
Notifications
You must be signed in to change notification settings - Fork 2.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How create a partially sign multisig transaction using Psbt #1714
Comments
This is a good example of how you could export and import a PSBT and transport between people. bitcoinjs-lib/test/integration/transactions.spec.ts Lines 75 to 160 in 27a840a
The same concept applies, except instead of two people signing two inputs, your version would be two people signing the same input (because it's multisig) |
Also:
|
it's because I'm following this tutorial, it was the only one that worked for me, so I'm lost, the code you sent me above doesn't work for me |
my code is working, the only problem is I don't know how to do it partially signed |
In the example I gave you, what method did it use to export psbt data to "send out to the signers"? What static method did each signer use to import psbt data into After they signed, and re-exported using the same method in question 1, what did the person receiving the exported text from signer1 and signer2 do with the text (s1text, s2text)? Once you can answer these questions you'll understand what you need to do. |
I can sign a multisig transaction with two private keys, but I need to sign with only one key and send the partially signed transaction to the next sign, how to create a partially signed multisig transaction?
The text was updated successfully, but these errors were encountered: