bitcoinjs-lib/ts_src/templates/nulldata.ts

17 lines
372 B
TypeScript
Raw Normal View History

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