2016-11-02 02:30:37 +01:00
|
|
|
// OP_0 {pubKeyHash}
|
|
|
|
|
2018-06-25 08:25:12 +02:00
|
|
|
const bscript = require('../../script')
|
|
|
|
const types = require('../../types')
|
|
|
|
const typeforce = require('typeforce')
|
|
|
|
const OPS = require('bitcoin-ops')
|
2016-11-02 02:30:37 +01:00
|
|
|
|
|
|
|
function check (script) {
|
|
|
|
var buffer = bscript.compile(script)
|
|
|
|
|
|
|
|
return buffer.length === 22 &&
|
|
|
|
buffer[0] === OPS.OP_0 &&
|
|
|
|
buffer[1] === 0x14
|
|
|
|
}
|
2016-11-02 04:33:46 +01:00
|
|
|
check.toJSON = function () { return 'Witness pubKeyHash output' }
|
2016-11-02 02:30:37 +01:00
|
|
|
|
|
|
|
function encode (pubKeyHash) {
|
|
|
|
typeforce(types.Hash160bit, pubKeyHash)
|
|
|
|
|
|
|
|
return bscript.compile([OPS.OP_0, pubKeyHash])
|
|
|
|
}
|
|
|
|
|
|
|
|
function decode (buffer) {
|
|
|
|
typeforce(check, buffer)
|
|
|
|
|
|
|
|
return buffer.slice(2)
|
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
check: check,
|
|
|
|
decode: decode,
|
|
|
|
encode: encode
|
|
|
|
}
|