@ethersphere/swarm-cli
Version:
CLI tool for Bee
48 lines (47 loc) • 1.98 kB
JavaScript
;
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
return c > 3 && r && Object.defineProperty(target, key, r), r;
};
var __metadata = (this && this.__metadata) || function (k, v) {
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.PssCommand = void 0;
const bee_js_1 = require("@ethersphere/bee-js");
const furious_commander_1 = require("furious-commander");
const root_command_1 = require("../root-command");
// TODO: https://github.com/ethersphere/bee/issues/2041
class PssCommand extends root_command_1.RootCommand {
constructor() {
super(...arguments);
Object.defineProperty(this, "topic", {
enumerable: true,
configurable: true,
writable: true,
value: void 0
});
Object.defineProperty(this, "topicString", {
enumerable: true,
configurable: true,
writable: true,
value: void 0
});
}
init() {
super.init();
this.topic = bee_js_1.Topic.fromString(this.topicString).toHex();
}
}
__decorate([
(0, furious_commander_1.Option)({
key: 'topic-string',
alias: 'T',
description: 'Construct the topic from human readable strings',
required: true,
}),
__metadata("design:type", String)
], PssCommand.prototype, "topicString", void 0);
exports.PssCommand = PssCommand;