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

17 lines
554 B
TypeScript
Raw Normal View History

// {signature} {pubKey}
2018-12-28 06:45:17 +01:00
import * as bscript from '../../script'
2018-12-28 06:45:17 +01:00
function isCompressedCanonicalPubKey (pubKey: Buffer): boolean {
return bscript.isCanonicalPubKey(pubKey) && pubKey.length === 33
}
2018-12-28 06:45:17 +01:00
export function check (script: Buffer | Array<number | Buffer>): boolean {
2018-12-28 17:55:07 +01:00
const chunks = <Array<number | Buffer>>bscript.decompile(script)
return chunks.length === 2 &&
2018-12-28 06:45:17 +01:00
bscript.isCanonicalScriptSignature(<Buffer>chunks[0]) &&
isCompressedCanonicalPubKey(<Buffer>chunks[1])
}
check.toJSON = function () { return 'witnessPubKeyHash input' }