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

14 lines
370 B
TypeScript
Raw Normal View History

// OP_0 {pubKeyHash}
2019-03-06 13:38:36 +01:00
import * as bscript from '../../script';
import { OPS } from '../../script';
2019-03-06 13:38:36 +01:00
export function check(script: Buffer | Array<number | Buffer>): boolean {
const buffer = bscript.compile(script);
2019-03-06 13:38:36 +01:00
return buffer.length === 22 && buffer[0] === OPS.OP_0 && buffer[1] === 0x14;
}
check.toJSON = (): string => {
2019-03-06 13:38:36 +01:00
return 'Witness pubKeyHash output';
};