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

19 lines
447 B
TypeScript
Raw Normal View History

// {pubKey} OP_CHECKSIG
2019-03-07 06:16:45 +01:00
import { Stack } from '../../payments';
2019-03-06 13:38:36 +01:00
import * as bscript from '../../script';
import { OPS } from '../../script';
2019-03-07 06:16:45 +01:00
export function check(script: Buffer | Stack): boolean {
const chunks = bscript.decompile(script) as Stack;
2019-03-06 13:38:36 +01:00
return (
chunks.length === 2 &&
2019-03-07 06:16:45 +01:00
bscript.isCanonicalPubKey(chunks[0] as Buffer) &&
chunks[1] === OPS.OP_CHECKSIG
2019-03-06 13:38:36 +01:00
);
}
check.toJSON = (): string => {
2019-03-06 13:38:36 +01:00
return 'pubKey output';
};