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