@ethersphere/swarm-cli
Version:
CLI tool for Bee
57 lines (56 loc) • 2.39 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.Unlock = void 0;
const furious_commander_1 = require("furious-commander");
const _1 = require(".");
const root_command_1 = require("../root-command");
class Unlock extends root_command_1.RootCommand {
constructor() {
super(...arguments);
Object.defineProperty(this, "name", {
enumerable: true,
configurable: true,
writable: true,
value: 'unlock'
});
Object.defineProperty(this, "description", {
enumerable: true,
configurable: true,
writable: true,
value: 'Unlocks a V3 wallet with a password and prints the private key string'
});
Object.defineProperty(this, "walletSource", {
enumerable: true,
configurable: true,
writable: true,
value: void 0
});
}
async run() {
await super.init();
const wallet = await (0, _1.createWallet)(this.walletSource, this.console);
if (!this.yes) {
await this.console.confirm('The private key will be printed to the console. Make sure no one is looking at your screen. Continue?');
}
this.console.all(wallet.getPrivateKeyString());
}
}
__decorate([
(0, furious_commander_1.Argument)({
key: 'wallet-source',
description: 'Wallet source (path or private key string)',
required: true,
autocompletePath: true,
}),
__metadata("design:type", String)
], Unlock.prototype, "walletSource", void 0);
exports.Unlock = Unlock;