2016-11-02 02:30:37 +01:00
|
|
|
// {signature}
|
|
|
|
|
2019-03-06 13:38:36 +01:00
|
|
|
import * as bscript from '../../script';
|
2016-11-02 02:30:37 +01:00
|
|
|
|
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);
|
2016-11-02 02:30:37 +01:00
|
|
|
|
2019-03-06 13:38:36 +01:00
|
|
|
return (
|
|
|
|
chunks.length === 1 && bscript.isCanonicalScriptSignature(<Buffer>chunks[0])
|
|
|
|
);
|
2016-11-02 02:30:37 +01:00
|
|
|
}
|
2019-03-06 13:38:36 +01:00
|
|
|
check.toJSON = function() {
|
|
|
|
return 'pubKey input';
|
|
|
|
};
|