Multi-signature Legacy 2 of 4
To follow along this tutorial
|
Let’s create a 2 of 4 multi-signature with a legacy P2SH transaction.
Creating and Funding the P2SH
const bitcoin = require('bitcoinjs-lib')
const { alice, bob, carol, dave } = require('./wallets.json')
const network = bitcoin.networks.regtest
const keyPairAlice1 = bitcoin.ECPair.fromWIF(alice[1].wif, network)
const keyPairBob1 = bitcoin.ECPair.fromWIF(bob[1].wif, network)
const keyPairCarol1 = bitcoin.ECPair.fromWIF(carol[1].wif, network)
const keyPairDave1 = bitcoin.ECPair.fromWIF(dave[1].wif, network)
const keyPairAlice2 = bitcoin.ECPair.fromWIF(alice[2].wif, network)
const p2wpkhAlice2 = bitcoin.payments.p2wpkh({pubkey: keyPairAlice2.publicKey, network})
p2ms
payment method.const p2ms = bitcoin.payments.p2ms({
m: 2, pubkeys: [
keyPairAlice1.publicKey,
keyPairBob1.publicKey,
keyPairCarol1.publicKey,
keyPairDave1.publicKey], network})
console.log('Script:')
console.log(p2ms.output.toString('hex'))
decodescript SCRIPT
02 03745c9aceb84dcdeddf2c3cdc1edb0b0b5af2f9bf85612d73fa6394758eaee35d 027efbabf425077cdbceb73f6681c7ebe2ade74a65ea57ebcf0c42364d3822c590 023a11cfcedb993ff2e7523f92e359c4454072a66d42e8b74b4b27a8a1258abddd 02e9d617f38f8c3ab9a6bde36ce991bafb295d7adba457699f8620c8160ec9e87a 04 OP_CHECKMULTISIG
Feed the p2sh
method with the special BitcoinJS p2ms
object. The p2sh
method generates an object that contains the P2SH address.
const p2sh = bitcoin.payments.p2sh({redeem: p2ms, network})
console.log('P2SH address')
console.log(p2sh.address)
sendtoaddress 2NAjnUkVxAv34bnfpC1edhW5qstF2QHSUk5 1
gettransaction TX_ID
Find the output index (or vout) under | .
Preparing the spending transaction
Now let’s prepare the spending transaction by setting input and output and having two people (private keys) to sign the transaction. Here alice_1 ad bob_1 will redeem the P2SH multi-signature and send the funds to alice_2 P2WPKH address.
const txb = new bitcoin.TransactionBuilder(network)
txb.addInput('TX_ID', TX_VOUT)
txb.addOutput(p2wpkhAlice2.address, 999e5)
// txb.sign(index, keyPair, redeemScript, sign.hashType, value, witnessScript)
txb.sign(0, keyPairAlice1, p2sh.redeem.output)
txb.sign(0, keyPairBob1, p2sh.redeem.output)
Note that we need to provide the redeemScript as third parameter of the sign method.
|
const tx = txb.build()
console.log('Transaction hexadecimal:')
console.log(tx.toHex())
decoderawtransaction TX_HEX