2016-11-02 02:30:37 +01:00
|
|
|
// OP_RETURN {data}
|
2019-03-03 15:07:49 +01:00
|
|
|
import * as bscript from '../script';
|
|
|
|
const OPS = bscript.OPS;
|
2016-11-02 02:30:37 +01:00
|
|
|
|
2019-03-03 15:07:49 +01:00
|
|
|
export function check(script: Buffer | Array<number | Buffer>): boolean {
|
|
|
|
const buffer = bscript.compile(script);
|
2016-11-02 02:30:37 +01:00
|
|
|
|
2019-03-03 15:07:49 +01:00
|
|
|
return buffer.length > 1 && buffer[0] === OPS.OP_RETURN;
|
2016-11-02 02:30:37 +01:00
|
|
|
}
|
2019-03-21 16:15:37 +01:00
|
|
|
check.toJSON = (): string => {
|
2019-03-03 15:07:49 +01:00
|
|
|
return 'null data output';
|
|
|
|
};
|
2016-11-02 02:30:37 +01:00
|
|
|
|
2019-03-03 15:07:49 +01:00
|
|
|
const output = { check };
|
2018-12-26 10:37:09 +01:00
|
|
|
|
2019-03-03 15:07:49 +01:00
|
|
|
export { output };
|