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

18 lines
434 B
TypeScript
Raw Normal View History

// {pubKey} 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 chunks = <Array<number | Buffer>>bscript.decompile(script);
2019-03-06 13:38:36 +01:00
return (
chunks.length === 2 &&
2018-12-28 05:23:23 +01:00
bscript.isCanonicalPubKey(<Buffer>chunks[0]) &&
chunks[1] === OPS.OP_CHECKSIG
2019-03-06 13:38:36 +01:00
);
}
2019-03-06 13:38:36 +01:00
check.toJSON = function() {
return 'pubKey output';
};