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

14 lines
369 B
TypeScript
Raw Normal View History

// OP_0 {pubKeyHash}
2018-12-28 06:45:17 +01:00
import * as bscript from '../../script'
2018-06-25 08:25:12 +02:00
const OPS = require('bitcoin-ops')
2018-12-28 06:45:17 +01:00
export function check (script: Buffer | Array<number | Buffer>): boolean {
const buffer = bscript.compile(script)
return buffer.length === 22 &&
buffer[0] === OPS.OP_0 &&
buffer[1] === 0x14
}
check.toJSON = function () { return 'Witness pubKeyHash output' }