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

21 lines
534 B
TypeScript
Raw Normal View History

// OP_DUP OP_HASH160 {pubKeyHash} OP_EQUALVERIFY OP_CHECKSIG
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 === 25 &&
buffer[0] === OPS.OP_DUP &&
buffer[1] === OPS.OP_HASH160 &&
buffer[2] === 0x14 &&
buffer[23] === OPS.OP_EQUALVERIFY &&
buffer[24] === OPS.OP_CHECKSIG
2019-03-06 13:38:36 +01:00
);
}
2019-03-06 13:38:36 +01:00
check.toJSON = function() {
return 'pubKeyHash output';
};