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

19 lines
436 B
TypeScript
Raw Normal View History

// OP_HASH160 {scriptHash} OP_EQUAL
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 === 23 &&
buffer[0] === OPS.OP_HASH160 &&
buffer[1] === 0x14 &&
buffer[22] === OPS.OP_EQUAL
2019-03-06 13:38:36 +01:00
);
}
check.toJSON = (): string => {
2019-03-06 13:38:36 +01:00
return 'scriptHash output';
};