2014-06-16 08:05:31 +02:00
|
|
|
var assert = require('assert')
|
2015-02-11 04:01:20 +01:00
|
|
|
var ops = require('./opcodes')
|
2014-06-16 08:05:31 +02:00
|
|
|
var scripts = require('./scripts')
|
|
|
|
|
2015-03-02 07:18:56 +01:00
|
|
|
var Address = require('./address')
|
2014-07-28 06:28:44 +02:00
|
|
|
var ECPubKey = require('./ecpubkey')
|
|
|
|
var ECSignature = require('./ecsignature')
|
2014-06-16 08:05:31 +02:00
|
|
|
var Script = require('./script')
|
2014-07-28 06:28:44 +02:00
|
|
|
var Transaction = require('./transaction')
|
2014-06-16 08:05:31 +02:00
|
|
|
|
2015-02-23 00:36:57 +01:00
|
|
|
function extractInput (txIn) {
|
2014-12-12 02:48:04 +01:00
|
|
|
var redeemScript
|
|
|
|
var scriptSig = txIn.script
|
2015-01-06 02:33:49 +01:00
|
|
|
var prevOutScript
|
|
|
|
var prevOutType = scripts.classifyInput(scriptSig, true)
|
|
|
|
var scriptType
|
2014-12-12 02:48:04 +01:00
|
|
|
|
2015-02-05 03:29:28 +01:00
|
|
|
// Re-classify if scriptHash
|
2015-01-06 02:33:49 +01:00
|
|
|
if (prevOutType === 'scripthash') {
|
2014-12-12 02:48:04 +01:00
|
|
|
redeemScript = Script.fromBuffer(scriptSig.chunks.slice(-1)[0])
|
2015-01-06 02:33:49 +01:00
|
|
|
prevOutScript = scripts.scriptHashOutput(redeemScript.getHash())
|
2014-12-12 02:48:04 +01:00
|
|
|
|
2015-01-06 02:33:49 +01:00
|
|
|
scriptSig = Script.fromChunks(scriptSig.chunks.slice(0, -1))
|
2014-12-12 02:48:04 +01:00
|
|
|
scriptType = scripts.classifyInput(scriptSig, true)
|
2015-01-06 02:33:49 +01:00
|
|
|
} else {
|
|
|
|
scriptType = prevOutType
|
2014-12-12 02:48:04 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// Extract hashType, pubKeys and signatures
|
2015-02-05 04:13:27 +01:00
|
|
|
var hashType, parsed, pubKeys, signatures
|
2014-12-12 02:48:04 +01:00
|
|
|
|
|
|
|
switch (scriptType) {
|
2015-02-05 04:13:27 +01:00
|
|
|
case 'pubkeyhash': {
|
2014-12-12 02:48:04 +01:00
|
|
|
parsed = ECSignature.parseScriptSignature(scriptSig.chunks[0])
|
|
|
|
hashType = parsed.hashType
|
2014-12-12 05:19:03 +01:00
|
|
|
pubKeys = [ECPubKey.fromBuffer(scriptSig.chunks[1])]
|
2014-12-12 02:48:04 +01:00
|
|
|
signatures = [parsed.signature]
|
2015-01-06 02:33:49 +01:00
|
|
|
prevOutScript = pubKeys[0].getAddress().toOutputScript()
|
|
|
|
|
2014-12-12 02:48:04 +01:00
|
|
|
break
|
2015-02-05 04:13:27 +01:00
|
|
|
}
|
2014-12-12 02:48:04 +01:00
|
|
|
|
2015-02-05 04:13:27 +01:00
|
|
|
case 'pubkey': {
|
2014-12-12 02:48:04 +01:00
|
|
|
parsed = ECSignature.parseScriptSignature(scriptSig.chunks[0])
|
|
|
|
hashType = parsed.hashType
|
|
|
|
signatures = [parsed.signature]
|
|
|
|
|
2014-12-12 05:19:03 +01:00
|
|
|
if (redeemScript) {
|
|
|
|
pubKeys = [ECPubKey.fromBuffer(redeemScript.chunks[0])]
|
|
|
|
}
|
|
|
|
|
2014-12-12 02:48:04 +01:00
|
|
|
break
|
2015-02-05 04:13:27 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
case 'multisig': {
|
2015-02-23 00:36:57 +01:00
|
|
|
signatures = scriptSig.chunks.slice(1).map(function (chunk) {
|
2015-02-05 04:13:27 +01:00
|
|
|
if (chunk === ops.OP_0) return chunk
|
|
|
|
|
|
|
|
var parsed = ECSignature.parseScriptSignature(chunk)
|
|
|
|
hashType = parsed.hashType
|
|
|
|
|
|
|
|
return parsed.signature
|
|
|
|
})
|
2014-12-12 02:48:04 +01:00
|
|
|
|
2015-01-06 02:33:49 +01:00
|
|
|
if (redeemScript) {
|
2015-02-05 04:13:27 +01:00
|
|
|
pubKeys = redeemScript.chunks.slice(1, -2).map(ECPubKey.fromBuffer)
|
2015-01-06 02:33:49 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
break
|
2015-02-05 04:13:27 +01:00
|
|
|
}
|
2014-12-12 02:48:04 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return {
|
|
|
|
hashType: hashType,
|
2015-01-06 02:33:49 +01:00
|
|
|
prevOutScript: prevOutScript,
|
|
|
|
prevOutType: prevOutType,
|
2014-12-12 02:48:04 +01:00
|
|
|
pubKeys: pubKeys,
|
|
|
|
redeemScript: redeemScript,
|
|
|
|
scriptType: scriptType,
|
|
|
|
signatures: signatures
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-02-23 00:36:57 +01:00
|
|
|
function TransactionBuilder () {
|
2015-01-05 05:30:04 +01:00
|
|
|
this.prevTxMap = {}
|
2015-01-06 06:05:38 +01:00
|
|
|
this.prevOutScripts = {}
|
|
|
|
this.prevOutTypes = {}
|
|
|
|
|
2015-01-06 02:33:49 +01:00
|
|
|
this.inputs = []
|
2015-01-06 06:05:38 +01:00
|
|
|
this.tx = new Transaction()
|
|
|
|
}
|
|
|
|
|
2015-02-23 00:36:57 +01:00
|
|
|
TransactionBuilder.fromTransaction = function (transaction) {
|
2014-08-18 00:59:26 +02:00
|
|
|
var txb = new TransactionBuilder()
|
|
|
|
|
2015-01-23 06:35:09 +01:00
|
|
|
// Copy other transaction fields
|
|
|
|
txb.tx.version = transaction.version
|
|
|
|
txb.tx.locktime = transaction.locktime
|
|
|
|
|
2014-08-18 00:59:26 +02:00
|
|
|
// Extract/add inputs
|
2015-02-23 00:36:57 +01:00
|
|
|
transaction.ins.forEach(function (txIn) {
|
2014-12-02 04:20:04 +01:00
|
|
|
txb.addInput(txIn.hash, txIn.index, txIn.sequence)
|
2014-08-18 00:59:26 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
// Extract/add outputs
|
2015-02-23 00:36:57 +01:00
|
|
|
transaction.outs.forEach(function (txOut) {
|
2014-12-02 04:20:04 +01:00
|
|
|
txb.addOutput(txOut.script, txOut.value)
|
2014-08-18 00:59:26 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
// Extract/add signatures
|
2015-02-23 00:36:57 +01:00
|
|
|
txb.inputs = transaction.ins.map(function (txIn) {
|
2015-01-06 05:50:13 +01:00
|
|
|
// TODO: remove me after testcase added
|
2015-02-19 02:04:37 +01:00
|
|
|
assert(!Transaction.isCoinbaseHash(txIn.hash), 'coinbase inputs not supported')
|
2014-08-30 06:35:46 +02:00
|
|
|
|
2014-12-12 02:48:04 +01:00
|
|
|
// Ignore empty scripts
|
|
|
|
if (txIn.script.buffer.length === 0) return
|
2014-08-18 00:59:26 +02:00
|
|
|
|
2015-01-06 02:33:49 +01:00
|
|
|
return extractInput(txIn)
|
2014-08-18 00:59:26 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
return txb
|
|
|
|
}
|
|
|
|
|
2015-03-02 08:06:49 +01:00
|
|
|
TransactionBuilder.prototype.addInput = function (txHash, vout, sequence, prevOutScript) {
|
|
|
|
// is it a txId?
|
|
|
|
if (typeof txHash === 'string') {
|
|
|
|
// a txId is big-endian hex, we want a little-endian Buffer
|
|
|
|
txHash = new Buffer(txHash, 'hex')
|
|
|
|
Array.prototype.reverse.call(txHash)
|
|
|
|
|
|
|
|
// is it a Transaction?
|
|
|
|
} else if (txHash instanceof Transaction) {
|
|
|
|
prevOutScript = txHash.outs[vout].script
|
|
|
|
txHash = txHash.getHash()
|
2014-06-16 08:05:31 +02:00
|
|
|
}
|
|
|
|
|
2015-01-06 02:33:49 +01:00
|
|
|
var input = {}
|
|
|
|
if (prevOutScript) {
|
|
|
|
var prevOutType = scripts.classifyOutput(prevOutScript)
|
|
|
|
|
|
|
|
// if we can, extract pubKey information
|
|
|
|
switch (prevOutType) {
|
2015-03-02 03:31:03 +01:00
|
|
|
case 'multisig': {
|
2015-01-06 02:33:49 +01:00
|
|
|
input.pubKeys = prevOutScript.chunks.slice(1, -2).map(ECPubKey.fromBuffer)
|
2015-03-02 03:31:03 +01:00
|
|
|
break
|
|
|
|
}
|
2015-01-06 02:33:49 +01:00
|
|
|
|
2015-03-02 03:31:03 +01:00
|
|
|
case 'pubkey': {
|
2015-01-06 02:33:49 +01:00
|
|
|
input.pubKeys = prevOutScript.chunks.slice(0, 1).map(ECPubKey.fromBuffer)
|
2015-03-02 03:31:03 +01:00
|
|
|
break
|
|
|
|
}
|
2015-01-06 02:33:49 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if (prevOutType !== 'scripthash') {
|
|
|
|
input.scriptType = prevOutType
|
|
|
|
}
|
2014-06-16 08:05:31 +02:00
|
|
|
|
2015-01-06 02:33:49 +01:00
|
|
|
input.prevOutScript = prevOutScript
|
|
|
|
input.prevOutType = prevOutType
|
2014-06-16 08:05:31 +02:00
|
|
|
}
|
|
|
|
|
2015-02-23 00:36:57 +01:00
|
|
|
assert(this.inputs.every(function (input2) {
|
2015-01-06 02:33:49 +01:00
|
|
|
if (input2.hashType === undefined) return true
|
|
|
|
|
|
|
|
return input2.hashType & Transaction.SIGHASH_ANYONECANPAY
|
2014-06-16 08:05:31 +02:00
|
|
|
}), 'No, this would invalidate signatures')
|
|
|
|
|
2015-03-02 08:06:49 +01:00
|
|
|
var prevOut = txHash.toString('hex') + ':' + vout
|
2015-01-05 05:30:04 +01:00
|
|
|
assert(!(prevOut in this.prevTxMap), 'Transaction is already an input')
|
2014-06-16 08:05:31 +02:00
|
|
|
|
2015-03-02 08:06:49 +01:00
|
|
|
var vin = this.tx.addInput(txHash, vout, sequence)
|
2015-02-05 03:29:59 +01:00
|
|
|
this.inputs[vin] = input
|
|
|
|
this.prevTxMap[prevOut] = vin
|
2015-01-06 02:33:49 +01:00
|
|
|
|
2015-02-05 03:29:59 +01:00
|
|
|
return vin
|
2014-06-16 08:05:31 +02:00
|
|
|
}
|
|
|
|
|
2015-02-23 00:36:57 +01:00
|
|
|
TransactionBuilder.prototype.addOutput = function (scriptPubKey, value) {
|
|
|
|
assert(this.inputs.every(function (input) {
|
2015-01-06 02:33:49 +01:00
|
|
|
if (input.hashType === undefined) return true
|
|
|
|
|
|
|
|
return (input.hashType & 0x1f) === Transaction.SIGHASH_SINGLE
|
2014-06-16 08:05:31 +02:00
|
|
|
}), 'No, this would invalidate signatures')
|
|
|
|
|
2015-03-02 07:18:56 +01:00
|
|
|
// Attempt to get a valid address if it's a base58 address string
|
|
|
|
if (typeof scriptPubKey === 'string') {
|
|
|
|
scriptPubKey = Address.fromBase58Check(scriptPubKey)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Attempt to get a valid script if it's an Address object
|
|
|
|
if (scriptPubKey instanceof Address) {
|
|
|
|
scriptPubKey = scriptPubKey.toOutputScript()
|
|
|
|
}
|
|
|
|
|
2014-06-16 08:05:31 +02:00
|
|
|
return this.tx.addOutput(scriptPubKey, value)
|
|
|
|
}
|
|
|
|
|
2015-02-23 00:36:57 +01:00
|
|
|
TransactionBuilder.prototype.build = function () {
|
|
|
|
return this.__build(false)
|
|
|
|
}
|
|
|
|
TransactionBuilder.prototype.buildIncomplete = function () {
|
|
|
|
return this.__build(true)
|
|
|
|
}
|
2015-02-05 03:57:21 +01:00
|
|
|
|
2015-02-23 00:36:57 +01:00
|
|
|
var canSignTypes = {
|
|
|
|
'pubkeyhash': true,
|
|
|
|
'multisig': true,
|
|
|
|
'pubkey': true
|
|
|
|
}
|
2015-02-05 03:57:21 +01:00
|
|
|
|
2015-02-23 00:36:57 +01:00
|
|
|
TransactionBuilder.prototype.__build = function (allowIncomplete) {
|
2014-06-16 08:05:31 +02:00
|
|
|
if (!allowIncomplete) {
|
|
|
|
assert(this.tx.ins.length > 0, 'Transaction has no inputs')
|
|
|
|
assert(this.tx.outs.length > 0, 'Transaction has no outputs')
|
|
|
|
}
|
|
|
|
|
|
|
|
var tx = this.tx.clone()
|
|
|
|
|
2014-07-28 06:28:44 +02:00
|
|
|
// Create script signatures from signature meta-data
|
2015-02-23 00:36:57 +01:00
|
|
|
this.inputs.forEach(function (input, index) {
|
2015-02-05 03:57:21 +01:00
|
|
|
var scriptType = input.scriptType
|
|
|
|
var scriptSig
|
|
|
|
|
2015-01-06 02:33:49 +01:00
|
|
|
if (!allowIncomplete) {
|
2015-02-05 04:13:27 +01:00
|
|
|
assert(!!scriptType, 'Transaction is not complete')
|
2015-02-05 03:57:21 +01:00
|
|
|
assert(scriptType in canSignTypes, scriptType + ' not supported')
|
|
|
|
assert(input.signatures, 'Transaction is missing signatures')
|
2015-01-06 02:33:49 +01:00
|
|
|
}
|
2014-06-16 08:05:31 +02:00
|
|
|
|
2015-02-05 04:13:27 +01:00
|
|
|
if (input.signatures) {
|
|
|
|
switch (scriptType) {
|
2015-03-02 03:31:03 +01:00
|
|
|
case 'pubkeyhash': {
|
2015-02-05 04:13:27 +01:00
|
|
|
var pkhSignature = input.signatures[0].toScriptSignature(input.hashType)
|
|
|
|
scriptSig = scripts.pubKeyHashInput(pkhSignature, input.pubKeys[0])
|
2015-03-02 03:31:03 +01:00
|
|
|
break
|
|
|
|
}
|
2014-07-28 07:40:07 +02:00
|
|
|
|
2015-03-02 03:31:03 +01:00
|
|
|
case 'multisig': {
|
2015-02-05 04:13:27 +01:00
|
|
|
// Array.prototype.map is sparse-compatible
|
2015-02-23 00:36:57 +01:00
|
|
|
var msSignatures = input.signatures.map(function (signature) {
|
2015-03-03 11:51:37 +01:00
|
|
|
return signature && signature.toScriptSignature(input.hashType)
|
2015-02-05 04:13:27 +01:00
|
|
|
})
|
2015-01-06 05:50:13 +01:00
|
|
|
|
2015-02-05 04:13:27 +01:00
|
|
|
// fill in blanks with OP_0
|
2015-03-02 23:55:17 +01:00
|
|
|
if (allowIncomplete) {
|
|
|
|
for (var i = 0; i < msSignatures.length; ++i) {
|
|
|
|
if (msSignatures[i]) continue
|
|
|
|
|
|
|
|
msSignatures[i] = ops.OP_0
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// Array.prototype.filter returns non-sparse array
|
|
|
|
msSignatures = msSignatures.filter(function (x) { return x })
|
2015-02-05 04:13:27 +01:00
|
|
|
}
|
2015-01-06 02:33:49 +01:00
|
|
|
|
2015-02-05 04:13:27 +01:00
|
|
|
var redeemScript = allowIncomplete ? undefined : input.redeemScript
|
|
|
|
scriptSig = scripts.multisigInput(msSignatures, redeemScript)
|
2015-03-02 03:31:03 +01:00
|
|
|
break
|
|
|
|
}
|
2014-07-28 07:40:07 +02:00
|
|
|
|
2015-03-02 03:31:03 +01:00
|
|
|
case 'pubkey': {
|
2015-02-05 04:13:27 +01:00
|
|
|
var pkSignature = input.signatures[0].toScriptSignature(input.hashType)
|
|
|
|
scriptSig = scripts.pubKeyInput(pkSignature)
|
2015-03-02 03:31:03 +01:00
|
|
|
break
|
|
|
|
}
|
2015-02-05 04:13:27 +01:00
|
|
|
}
|
2014-06-16 08:05:31 +02:00
|
|
|
}
|
|
|
|
|
2015-02-05 04:33:31 +01:00
|
|
|
// did we build a scriptSig?
|
|
|
|
if (scriptSig) {
|
|
|
|
// wrap as scriptHash if necessary
|
|
|
|
if (input.prevOutType === 'scripthash') {
|
|
|
|
scriptSig = scripts.scriptHashInput(scriptSig, input.redeemScript)
|
|
|
|
}
|
2014-06-16 08:05:31 +02:00
|
|
|
|
2015-02-05 04:33:31 +01:00
|
|
|
tx.setInputScript(index, scriptSig)
|
|
|
|
}
|
2014-06-16 08:05:31 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
return tx
|
|
|
|
}
|
|
|
|
|
2015-02-23 00:36:57 +01:00
|
|
|
TransactionBuilder.prototype.sign = function (index, privKey, redeemScript, hashType) {
|
2015-01-06 02:33:49 +01:00
|
|
|
assert(index in this.inputs, 'No input at index: ' + index)
|
2014-08-18 00:59:26 +02:00
|
|
|
hashType = hashType || Transaction.SIGHASH_ALL
|
2014-07-28 06:28:44 +02:00
|
|
|
|
2015-01-06 02:33:49 +01:00
|
|
|
var input = this.inputs[index]
|
2015-02-05 04:48:29 +01:00
|
|
|
var canSign = input.hashType &&
|
2015-02-23 00:36:57 +01:00
|
|
|
input.prevOutScript &&
|
|
|
|
input.prevOutType &&
|
|
|
|
input.pubKeys &&
|
|
|
|
input.scriptType &&
|
|
|
|
input.signatures
|
2015-02-05 04:48:29 +01:00
|
|
|
|
|
|
|
// are we almost ready to sign?
|
|
|
|
if (canSign) {
|
|
|
|
// if redeemScript was provided, enforce consistency
|
2015-01-06 02:33:49 +01:00
|
|
|
if (redeemScript) {
|
|
|
|
assert.deepEqual(input.redeemScript, redeemScript, 'Inconsistent redeemScript')
|
|
|
|
}
|
2014-07-28 07:40:07 +02:00
|
|
|
|
2015-02-05 04:48:29 +01:00
|
|
|
assert.equal(input.hashType, hashType, 'Inconsistent hashType')
|
|
|
|
|
|
|
|
// no? prepare
|
2014-08-18 00:59:26 +02:00
|
|
|
} else {
|
2015-02-23 00:36:57 +01:00
|
|
|
// must be pay-to-scriptHash?
|
2015-01-06 02:33:49 +01:00
|
|
|
if (redeemScript) {
|
2015-02-04 11:10:33 +01:00
|
|
|
// if we have a prevOutScript, enforce scriptHash equality to the redeemScript
|
2015-01-06 02:33:49 +01:00
|
|
|
if (input.prevOutScript) {
|
|
|
|
assert.equal(input.prevOutType, 'scripthash', 'PrevOutScript must be P2SH')
|
2014-07-28 06:28:44 +02:00
|
|
|
|
2015-01-06 02:33:49 +01:00
|
|
|
var scriptHash = input.prevOutScript.chunks[1]
|
|
|
|
assert.deepEqual(scriptHash, redeemScript.getHash(), 'RedeemScript does not match ' + scriptHash.toString('hex'))
|
|
|
|
}
|
2014-07-28 07:40:07 +02:00
|
|
|
|
2015-01-06 02:33:49 +01:00
|
|
|
var scriptType = scripts.classifyOutput(redeemScript)
|
2015-02-04 10:02:10 +01:00
|
|
|
assert(scriptType in canSignTypes, 'RedeemScript not supported (' + scriptType + ')')
|
2015-01-06 02:33:49 +01:00
|
|
|
|
2015-02-04 10:02:10 +01:00
|
|
|
var pubKeys = []
|
2015-01-06 02:33:49 +01:00
|
|
|
switch (scriptType) {
|
2015-03-02 03:31:03 +01:00
|
|
|
case 'multisig': {
|
2015-02-04 10:02:10 +01:00
|
|
|
pubKeys = redeemScript.chunks.slice(1, -2).map(ECPubKey.fromBuffer)
|
2015-03-02 03:31:03 +01:00
|
|
|
break
|
|
|
|
}
|
2015-01-06 02:33:49 +01:00
|
|
|
|
2015-03-02 03:31:03 +01:00
|
|
|
case 'pubkeyhash': {
|
2015-01-06 02:33:49 +01:00
|
|
|
var pkh1 = redeemScript.chunks[2]
|
|
|
|
var pkh2 = privKey.pub.getAddress().hash
|
|
|
|
|
|
|
|
assert.deepEqual(pkh1, pkh2, 'privateKey cannot sign for this input')
|
2015-02-04 10:02:10 +01:00
|
|
|
pubKeys = [privKey.pub]
|
2015-03-02 03:31:03 +01:00
|
|
|
break
|
|
|
|
}
|
2015-01-06 02:33:49 +01:00
|
|
|
|
2015-03-02 03:31:03 +01:00
|
|
|
case 'pubkey': {
|
2015-02-04 10:02:10 +01:00
|
|
|
pubKeys = redeemScript.chunks.slice(0, 1).map(ECPubKey.fromBuffer)
|
2015-03-02 03:31:03 +01:00
|
|
|
break
|
|
|
|
}
|
2015-02-04 10:02:10 +01:00
|
|
|
}
|
2014-07-28 06:28:44 +02:00
|
|
|
|
2015-02-04 10:02:10 +01:00
|
|
|
if (!input.prevOutScript) {
|
|
|
|
input.prevOutScript = scripts.scriptHashOutput(redeemScript.getHash())
|
|
|
|
input.prevOutType = 'scripthash'
|
2015-01-06 02:33:49 +01:00
|
|
|
}
|
2014-12-12 05:19:03 +01:00
|
|
|
|
2015-02-04 10:02:10 +01:00
|
|
|
input.pubKeys = pubKeys
|
2015-01-06 02:33:49 +01:00
|
|
|
input.redeemScript = redeemScript
|
|
|
|
input.scriptType = scriptType
|
2014-12-12 05:19:03 +01:00
|
|
|
|
2015-02-23 00:36:57 +01:00
|
|
|
// cannot be pay-to-scriptHash
|
2014-12-12 05:19:03 +01:00
|
|
|
} else {
|
2015-01-06 02:33:49 +01:00
|
|
|
assert.notEqual(input.prevOutType, 'scripthash', 'PrevOutScript is P2SH, missing redeemScript')
|
2014-12-12 05:19:03 +01:00
|
|
|
|
2015-02-23 00:36:57 +01:00
|
|
|
// can we otherwise sign this?
|
2015-02-05 04:45:12 +01:00
|
|
|
if (input.scriptType) {
|
|
|
|
assert(input.pubKeys, input.scriptType + ' not supported')
|
|
|
|
|
|
|
|
// we know nothin' Jon Snow, assume pubKeyHash
|
|
|
|
} else {
|
2015-01-06 02:33:49 +01:00
|
|
|
input.prevOutScript = privKey.pub.getAddress().toOutputScript()
|
|
|
|
input.prevOutType = 'pubkeyhash'
|
|
|
|
input.pubKeys = [privKey.pub]
|
|
|
|
input.scriptType = input.prevOutType
|
|
|
|
}
|
2014-07-28 06:28:44 +02:00
|
|
|
}
|
2014-12-12 04:48:31 +01:00
|
|
|
|
2015-01-06 02:33:49 +01:00
|
|
|
input.hashType = hashType
|
|
|
|
input.signatures = input.signatures || []
|
|
|
|
}
|
|
|
|
|
2015-03-03 11:51:37 +01:00
|
|
|
var signatureScript = input.redeemScript || input.prevOutScript
|
|
|
|
var signatureHash = this.tx.hashForSignature(index, signatureScript, hashType)
|
|
|
|
|
|
|
|
if (input.scriptType === 'multisig' && input.redeemScript && input.signatures.length !== input.pubKeys.length) {
|
|
|
|
// store signatures locally
|
|
|
|
var _signatures = input.signatures.slice()
|
|
|
|
|
|
|
|
// loop over pubKeys to set their respective signature or set it to OP_0
|
|
|
|
input.signatures = input.pubKeys.map(function (pubKey) {
|
|
|
|
var signature = null
|
|
|
|
_signatures.forEach(function (_signature, _sigIdx) {
|
|
|
|
// check if the signature is not null / false / OP_0 and verify if it belongs to the pubKey
|
|
|
|
if (!signature && _signature && pubKey.verify(signatureHash, _signature)) {
|
|
|
|
// use .splice to remove the signature from the list, so we won't verify it again
|
|
|
|
signature = _signatures.splice(_sigIdx, 1)[0]
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
return signature || ops.OP_0
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2015-02-05 04:13:27 +01:00
|
|
|
// enforce in order signing of public keys
|
2015-02-23 00:36:57 +01:00
|
|
|
assert(input.pubKeys.some(function (pubKey, i) {
|
2015-01-06 02:33:49 +01:00
|
|
|
if (!privKey.pub.Q.equals(pubKey.Q)) return false
|
2014-12-12 05:19:03 +01:00
|
|
|
|
|
|
|
assert(!input.signatures[i], 'Signature already exists')
|
2015-02-05 04:13:27 +01:00
|
|
|
var signature = privKey.sign(signatureHash)
|
2015-01-06 02:33:49 +01:00
|
|
|
input.signatures[i] = signature
|
2014-08-18 00:59:26 +02:00
|
|
|
|
2014-12-12 05:19:03 +01:00
|
|
|
return true
|
2015-02-05 04:13:27 +01:00
|
|
|
}, this), 'privateKey cannot sign for this input')
|
2014-07-28 06:28:44 +02:00
|
|
|
}
|
|
|
|
|
2014-06-16 08:05:31 +02:00
|
|
|
module.exports = TransactionBuilder
|