bitcoinjs-lib/ts_src/templates/nulldata.ts

17 lines
372 B
TypeScript
Raw Normal View History

// OP_RETURN {data}
2019-03-03 15:07:49 +01:00
import * as bscript from '../script';
const OPS = bscript.OPS;
2019-03-03 15:07:49 +01:00
export function check(script: Buffer | Array<number | Buffer>): boolean {
const buffer = bscript.compile(script);
2019-03-03 15:07:49 +01:00
return buffer.length > 1 && buffer[0] === OPS.OP_RETURN;
}
check.toJSON = (): string => {
2019-03-03 15:07:49 +01:00
return 'null data output';
};
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 };