Skip to main content
The 2024 Developer Survey results are live! See the results

All Questions

1 vote
1 answer
95 views

How to spend a multisig descriptor wallet transaction with bitcoin-cli?

I am looking for the correct way to spend multisig outputs with descriptor wallet bitcoin-cli. In regtest, I successfully created a funding transaction tx1 with the following outputs: out:0 sh(multi(1,...
Alec Matusis's user avatar
2 votes
0 answers
41 views

How to claim funds in a multisig address from a money pool psbt?

Mostly followed this guide on how to create a psbt where multiple users pool money together. Everything is done in regtest. The gist of what I did is as follows: Created 2 different descriptor ...
Psi's user avatar
  • 21
1 vote
0 answers
105 views

Cannot import multisignature descriptor in Bitcoin Core

I created a multisignature address in regtest: ADDR_1=`bitcoin-cli getnewaddress "" "bech32"` ADDR_2=`bitcoin-cli getnewaddress "" "bech32"` PB1=$(bitcoin-cli -...
monkeyUser's user avatar
5 votes
1 answer
2k views

How do I create a taproot multisig address requiring 21 of 210 keys to spend?

I understand that prior to taproot activation, m-of-n multisig addresses had an "n" max limit of 20 keys. I also saw the 998/999 tapscript multisig transaction that recently caused issues ...
FractalEncrypt's user avatar
2 votes
1 answer
193 views

Bitcoin 22.x + doesn't decode addresses for multisig

anyone can suggest why addresses won't decode in newer versions? example: bitcoin-core 0.21 bitcoin-cli getrawtransaction 9297132b89461da9dee0364db49eeb1c32770550bc5b82e02f1cbaab01043aa3 1 { "...
user133390's user avatar
0 votes
1 answer
206 views

Difference between createmultisig and addmultisigaddress on v 0.20.0?

What is difference between createmultisig and addmultisigaddress? I ran 2 methods for 2 same bitcoin address on bitcoin-cli but gives different addresses as multisig to me. the results are as follows: ...
sollover's user avatar
1 vote
1 answer
408 views

Bitcoin Core private key import

I would like to import the private keys from a multisig paper wallet to Bitcoin Core. My aim is to convert the paper wallet to an electronic wallet and to be able to export the corresponding wallet....
user738676's user avatar
1 vote
1 answer
134 views

How is a multisig transaction transferred between multiple signers?

I'm trying to learn more about doing multisig transactions. The examples I've seen show the signing of the transaction with 2-of-3, or 3-of-3, where the signatures are added, essentially, at the same ...
Magick's user avatar
  • 113
1 vote
1 answer
338 views

How to know the destination address of a multisig?

Run this command: bitcoin-cli getrawtransaction 56214420a7c4dcc4832944298d169a75e93acf9721f00656b2ee0e4d194f9970 2 You will see the first vout is a multisig as follow: { "value": 0....
Mars Lee's user avatar
  • 173
3 votes
1 answer
316 views

Create Custom script from bitcoind

I'm able to create multisig with bitcoin-cli with addmultisigaddress bitcoin-cli addmultisigaddress 2 '["'$ADDR_MITT_1'","'$ADDR_MITT_2'","'$ADDR_MITT_3'"]' But How can I add extra OP like CLTV or ...
monkeyUser's user avatar
0 votes
2 answers
287 views

Regtest createmultisig Error: Invalid public Key?

As shown below, I generated 3 new addresses (Legacy I believe) in RegTest. I then try to create a multsig address from exactly these 3 addresses. What am I doing wrong, or is this unavailable in ...
Sachin Meier's user avatar
1 vote
1 answer
320 views

Error Signing P2SH-P2WSH MultiSig - "Unable to sign input, invalid stack size (possibly missing key)"

I am trying to create and spend a P2SH-P2WSH transaction using bitcoin-cli but am getting "Unable to sign input, invalid stack size (possibly missing key)" when I try to sign the Multi-Sig transaction ...
Praveen's user avatar
  • 113
2 votes
1 answer
259 views

How to import multi sig using importmulti correctly?

I create a 2 of 2 with createmultisig using 02254aba14091e45a9067fbe5b225b3863d1c49650226d583dcede06a7c33f8613 and 02ad64a03b7fc53c02f68eac04743b819bfeeabe6ca7007f473dbaf7c3570f5dc9 pubkeys. I then ...
Fontaine's user avatar
  • 522