bitcoinjs-lib/test/integration/multisig.js

81 lines
2.9 KiB
JavaScript
Raw Normal View History

2015-02-23 00:36:57 +01:00
/* global describe, it */
var assert = require('assert')
var bitcoin = require('../../')
var blockchain = new (require('cb-helloblock'))('testnet')
2015-02-23 00:36:57 +01:00
describe('bitcoinjs-lib (multisig)', function () {
it('can create a 2-of-3 multisig P2SH address', function () {
var pubKeys = [
'026477115981fe981a6918a6297d9803c4dc04f328f22041bedff886bbc2962e01',
'02c96db2302d19b43d4c69368babace7854cc84eb9e061cde51cfa77ca4a22b8b9',
'03c6103b3b83e4a24a0e33a4df246ef11772f9992663db0c35759a5e2ebf68d8e9'
].map(bitcoin.ECPubKey.fromHex)
var redeemScript = bitcoin.scripts.multisigOutput(2, pubKeys) // 2 of 3
var scriptPubKey = bitcoin.scripts.scriptHashOutput(redeemScript.getHash())
var address = bitcoin.Address.fromOutputScript(scriptPubKey).toString()
assert.equal(address, '36NUkt6FWUi3LAWBqWRdDmdTWbt91Yvfu7')
})
2015-03-03 11:22:42 +01:00
it('can spend from a 2-of-3 multsig P2SH address', function (done) {
this.timeout(20000)
var privKeys = [
'91avARGdfge8E4tZfYLoxeJ5sGBdNJQH4kvjJoQFacbgwmaKkrx',
2015-03-03 11:22:42 +01:00
'91avARGdfge8E4tZfYLoxeJ5sGBdNJQH4kvjJoQFacbgww7vXtT',
'91avARGdfge8E4tZfYLoxeJ5sGBdNJQH4kvjJoQFacbgx3cTMqe'
].map(bitcoin.ECKey.fromWIF)
2015-02-23 00:36:57 +01:00
var pubKeys = privKeys.map(function (x) {
return x.pub
})
2015-03-03 11:22:42 +01:00
var redeemScript = bitcoin.scripts.multisigOutput(2, pubKeys) // 2 of 3
var scriptPubKey = bitcoin.scripts.scriptHashOutput(redeemScript.getHash())
var address = bitcoin.Address.fromOutputScript(scriptPubKey, bitcoin.networks.testnet).toString()
// Attempt to send funds to the source address
2015-02-23 00:36:57 +01:00
blockchain.addresses.__faucetWithdraw(address, 2e4, function (err) {
if (err) return done(err)
// get latest unspents from the address
2015-02-23 00:36:57 +01:00
blockchain.addresses.unspents(address, function (err, unspents) {
if (err) return done(err)
// filter small unspents
2015-02-23 00:36:57 +01:00
unspents = unspents.filter(function (unspent) {
return unspent.value > 1e4
})
// use the oldest unspent
var unspent = unspents.pop()
// make a random destination address
var targetAddress = bitcoin.ECKey.makeRandom().pub.getAddress(bitcoin.networks.testnet).toString()
var txb = new bitcoin.TransactionBuilder()
txb.addInput(unspent.txId, unspent.vout)
txb.addOutput(targetAddress, 1e4)
2015-03-03 11:22:42 +01:00
// sign with 1st and 3rd key
txb.sign(0, privKeys[0], redeemScript)
txb.sign(0, privKeys[2], redeemScript)
// broadcast our transaction
2015-02-23 00:36:57 +01:00
blockchain.transactions.propagate(txb.build().toHex(), function (err) {
if (err) return done(err)
// check that the funds (1e4 Satoshis) indeed arrived at the intended address
2015-02-23 00:36:57 +01:00
blockchain.addresses.summary(targetAddress, function (err, result) {
if (err) return done(err)
assert.equal(result.balance, 1e4)
done()
})
})
})
})
})
})