2016-11-02 02:30:37 +01:00
|
|
|
// OP_RETURN {data}
|
2018-12-28 05:18:42 +01:00
|
|
|
import * as bscript from '../script'
|
2018-12-29 14:49:35 +01:00
|
|
|
const OPS = bscript.OPS
|
2016-11-02 02:30:37 +01:00
|
|
|
|
2018-12-28 05:18:42 +01:00
|
|
|
export function check (script: Buffer | Array<number | Buffer>): boolean {
|
2018-06-25 08:37:45 +02:00
|
|
|
const buffer = bscript.compile(script)
|
2016-11-02 02:30:37 +01:00
|
|
|
|
|
|
|
return buffer.length > 1 &&
|
|
|
|
buffer[0] === OPS.OP_RETURN
|
|
|
|
}
|
2016-11-02 04:33:46 +01:00
|
|
|
check.toJSON = function () { return 'null data output' }
|
2016-11-02 02:30:37 +01:00
|
|
|
|
2018-12-26 10:37:09 +01:00
|
|
|
const output = { check }
|
|
|
|
|
|
|
|
export {
|
|
|
|
output
|
|
|
|
}
|