UNPKG

@ethersphere/swarm-cli

Version:
65 lines (64 loc) 2.51 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.List = void 0; const furious_commander_1 = require("furious-commander"); const cheque_command_1 = require("./cheque-command"); class List extends cheque_command_1.ChequeCommand { constructor() { super(...arguments); Object.defineProperty(this, "name", { enumerable: true, configurable: true, writable: true, value: 'list' }); Object.defineProperty(this, "alias", { enumerable: true, configurable: true, writable: true, value: 'ls' }); Object.defineProperty(this, "description", { enumerable: true, configurable: true, writable: true, value: 'List cashable cheques' }); Object.defineProperty(this, "minimum", { enumerable: true, configurable: true, writable: true, value: void 0 }); } async run() { super.init(); this.console.info(`Looking up cheques with value at least ${this.minimum}...`); const cheques = await this.getFilteredCheques(this.minimum); if (!cheques.length) { this.console.log('No uncashed cheques found.'); } cheques.forEach(cheque => this.printCheque(cheque)); } } __decorate([ (0, furious_commander_1.Option)({ key: 'minimum', alias: 'm', type: 'bigint', minimum: BigInt(0), description: 'List cheques with balance above this value in PLUR', default: BigInt(0), }), __metadata("design:type", BigInt) ], List.prototype, "minimum", void 0); exports.List = List;