You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
410 B
13 lines
410 B
8 years ago
|
// {signature} {pubKey}
|
||
8 years ago
|
|
||
6 years ago
|
import * as bscript from '../../script'
|
||
8 years ago
|
|
||
6 years ago
|
export function check (script: Buffer | Array<number | Buffer>): boolean {
|
||
6 years ago
|
const chunks = <Array<number | Buffer>>bscript.decompile(script)
|
||
8 years ago
|
|
||
|
return chunks.length === 2 &&
|
||
6 years ago
|
bscript.isCanonicalScriptSignature(<Buffer>chunks[0]) &&
|
||
|
bscript.isCanonicalPubKey(<Buffer>chunks[1])
|
||
8 years ago
|
}
|
||
8 years ago
|
check.toJSON = function () { return 'pubKeyHash input' }
|