bitcoinjs-lib/src/templates/witnessscripthash/output.ts

17 lines
358 B
TypeScript
Raw Normal View History

// OP_0 {scriptHash}
2018-06-25 08:25:12 +02:00
const bscript = require('../../script')
const OPS = require('bitcoin-ops')
function check (script) {
const buffer = bscript.compile(script)
return buffer.length === 34 &&
buffer[0] === OPS.OP_0 &&
buffer[1] === 0x20
}
check.toJSON = function () { return 'Witness scriptHash output' }
2018-07-03 15:00:00 +02:00
module.exports = { check }
export {}