2016-11-02 12:30:37 +11:00
|
|
|
// OP_RETURN {data}
|
|
|
|
|
2018-06-25 16:25:12 +10:00
|
|
|
const bscript = require('../script')
|
|
|
|
const OPS = require('bitcoin-ops')
|
2016-11-02 12:30:37 +11:00
|
|
|
|
2018-12-26 18:37:09 +09:00
|
|
|
export function check (script) {
|
2018-06-25 16:37:45 +10:00
|
|
|
const buffer = bscript.compile(script)
|
2016-11-02 12:30:37 +11:00
|
|
|
|
|
|
|
return buffer.length > 1 &&
|
|
|
|
buffer[0] === OPS.OP_RETURN
|
|
|
|
}
|
2016-11-02 14:33:46 +11:00
|
|
|
check.toJSON = function () { return 'null data output' }
|
2016-11-02 12:30:37 +11:00
|
|
|
|
2018-12-26 18:37:09 +09:00
|
|
|
const output = { check }
|
|
|
|
|
|
|
|
export {
|
|
|
|
output
|
|
|
|
}
|