2016-11-02 02:30:37 +01:00
|
|
|
// m [pubKeys ...] n OP_CHECKMULTISIG
|
|
|
|
|
2018-06-25 08:25:12 +02:00
|
|
|
const bscript = require('../../script')
|
|
|
|
const types = require('../../types')
|
|
|
|
const OPS = require('bitcoin-ops')
|
|
|
|
const OP_INT_BASE = OPS.OP_RESERVED // OP_1 - 1
|
2016-11-02 02:30:37 +01:00
|
|
|
|
|
|
|
function check (script, allowIncomplete) {
|
2018-06-25 08:37:45 +02:00
|
|
|
const chunks = bscript.decompile(script)
|
2016-11-02 02:30:37 +01:00
|
|
|
|
|
|
|
if (chunks.length < 4) return false
|
|
|
|
if (chunks[chunks.length - 1] !== OPS.OP_CHECKMULTISIG) return false
|
|
|
|
if (!types.Number(chunks[0])) return false
|
|
|
|
if (!types.Number(chunks[chunks.length - 2])) return false
|
2018-06-25 08:37:45 +02:00
|
|
|
const m = chunks[0] - OP_INT_BASE
|
|
|
|
const n = chunks[chunks.length - 2] - OP_INT_BASE
|
2016-11-02 02:30:37 +01:00
|
|
|
|
|
|
|
if (m <= 0) return false
|
|
|
|
if (n > 16) return false
|
|
|
|
if (m > n) return false
|
|
|
|
if (n !== chunks.length - 3) return false
|
|
|
|
if (allowIncomplete) return true
|
|
|
|
|
2018-06-25 08:37:45 +02:00
|
|
|
const keys = chunks.slice(1, -2)
|
2016-11-02 02:30:37 +01:00
|
|
|
return keys.every(bscript.isCanonicalPubKey)
|
|
|
|
}
|
2016-11-02 04:33:46 +01:00
|
|
|
check.toJSON = function () { return 'multi-sig output' }
|
2016-11-02 02:30:37 +01:00
|
|
|
|
2018-07-03 15:00:00 +02:00
|
|
|
module.exports = { check }
|