bitcoinjs-lib/ts_src/templates/multisig/output.ts

28 lines
1,007 B
TypeScript
Raw Normal View History

// m [pubKeys ...] n OP_CHECKMULTISIG
2018-12-28 05:18:42 +01:00
import * as bscript from '../../script'
import * as types from '../../types'
import { OPS } from '../../script'
2018-06-25 08:25:12 +02:00
const OP_INT_BASE = OPS.OP_RESERVED // OP_1 - 1
2018-12-28 05:18:42 +01:00
export function check (script: Buffer | Array<number | Buffer>, allowIncomplete?: boolean): boolean {
2018-12-28 17:55:07 +01:00
const chunks = <Array<number | Buffer>>bscript.decompile(script)
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-12-28 05:18:42 +01:00
const m = <number>chunks[0] - OP_INT_BASE
const n = <number>chunks[chunks.length - 2] - OP_INT_BASE
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-12-28 05:18:42 +01:00
const keys = <Array<Buffer>> chunks.slice(1, -2)
return keys.every(bscript.isCanonicalPubKey)
}
check.toJSON = function () { return 'multi-sig output' }