PHP WebShell
Текущая директория: /usr/lib/node_modules/bitgo/node_modules/bip174/src/lib/converter/shared
Просмотр файла: redeemScript.js
'use strict';
Object.defineProperty(exports, '__esModule', { value: true });
function makeConverter(TYPE_BYTE) {
function decode(keyVal) {
if (keyVal.key[0] !== TYPE_BYTE) {
throw new Error(
'Decode Error: could not decode redeemScript with key 0x' +
keyVal.key.toString('hex'),
);
}
return keyVal.value;
}
function encode(data) {
const key = Buffer.from([TYPE_BYTE]);
return {
key,
value: data,
};
}
const expected = 'Buffer';
function check(data) {
return Buffer.isBuffer(data);
}
function canAdd(currentData, newData) {
return !!currentData && !!newData && currentData.redeemScript === undefined;
}
return {
decode,
encode,
check,
expected,
canAdd,
};
}
exports.makeConverter = makeConverter;
Выполнить команду
Для локальной разработки. Не используйте в интернете!