@ethersphere/swarm-cli
Version:
CLI tool for Bee
88 lines (87 loc) • 3.63 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.Dilute = void 0;
const furious_commander_1 = require("furious-commander");
const stamp_1 = require("../../service/stamp");
const error_1 = require("../../utils/error");
const option_1 = require("../../utils/option");
const spinner_1 = require("../../utils/spinner");
const command_log_1 = require("../root-command/command-log");
const stamp_command_1 = require("./stamp-command");
class Dilute extends stamp_command_1.StampCommand {
constructor() {
super(...arguments);
Object.defineProperty(this, "name", {
enumerable: true,
configurable: true,
writable: true,
value: 'dilute'
});
Object.defineProperty(this, "description", {
enumerable: true,
configurable: true,
writable: true,
value: 'Increase depth of existing postage stamp'
});
Object.defineProperty(this, "depth", {
enumerable: true,
configurable: true,
writable: true,
value: void 0
});
Object.defineProperty(this, "stamp", {
enumerable: true,
configurable: true,
writable: true,
value: void 0
});
}
async run() {
await super.init();
if (!this.stamp) {
this.stamp = await (0, stamp_1.pickStamp)(this.bee, this.console);
}
const details = await this.bee.getPostageBatch(this.stamp);
if (this.depth <= details.depth) {
throw new error_1.CommandLineError(`This postage stamp already has depth ${details.depth}. The new value must be higher.`);
}
const spinner = (0, spinner_1.createSpinner)('Dilute in progress. This may take a few minutes.');
if (this.verbosity !== command_log_1.VerbosityLevel.Quiet && !this.curl) {
spinner.start();
}
try {
await this.bee.diluteBatch(this.stamp, this.depth);
}
finally {
spinner.stop();
}
this.console.log(`Dilute finished. Your Bee node will soon synchronize the new values from the blockchain.`);
this.console.log(`This can take a few minutes until the value is updated.`);
this.console.log(`Check it later with swarm-cli stamp show ${this.stamp}`);
}
}
__decorate([
(0, furious_commander_1.Option)({
key: 'depth',
description: 'Depth of the postage stamp',
type: 'number',
required: true,
minimum: 17,
maximum: 255,
}),
__metadata("design:type", Number)
], Dilute.prototype, "depth", void 0);
__decorate([
(0, furious_commander_1.Option)(option_1.stampProperties),
__metadata("design:type", String)
], Dilute.prototype, "stamp", void 0);
exports.Dilute = Dilute;