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

18 lines
406 B
TypeScript
Raw Normal View History

// OP_HASH160 {scriptHash} OP_EQUAL
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 === 23 &&
buffer[0] === OPS.OP_HASH160 &&
buffer[1] === 0x14 &&
buffer[22] === OPS.OP_EQUAL
}
check.toJSON = function () { return 'scriptHash output' }
2018-07-03 15:00:00 +02:00
module.exports = { check }
export {}