UNPKG

@ethersphere/swarm-cli

Version:
57 lines (56 loc) 2.4 kB
"use strict"; 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.Create = void 0; const bee_js_1 = require("@ethersphere/bee-js"); const cafe_utility_1 = require("cafe-utility"); const furious_commander_1 = require("furious-commander"); const stamp_1 = require("../../service/stamp"); const option_1 = require("../../utils/option"); const root_command_1 = require("../root-command"); class Create extends root_command_1.RootCommand { constructor() { super(...arguments); Object.defineProperty(this, "name", { enumerable: true, configurable: true, writable: true, value: 'create' }); Object.defineProperty(this, "description", { enumerable: true, configurable: true, writable: true, value: 'Create an empty manifest' }); Object.defineProperty(this, "stamp", { enumerable: true, configurable: true, writable: true, value: void 0 }); } async run() { super.init(); if (!this.stamp) { this.stamp = await (0, stamp_1.pickStamp)(this.bee, this.console); } const node = new bee_js_1.MantarayNode(); const result = await node.saveRecursively(this.bee, this.stamp); this.result = cafe_utility_1.Optional.of(result.reference); this.console.log(result.reference.toHex()); } } __decorate([ (0, furious_commander_1.Option)(option_1.stampProperties), __metadata("design:type", String) ], Create.prototype, "stamp", void 0); exports.Create = Create;