@yerofey/cryptowallet-cli 1.14.0 → 1.14.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/Method.js +7 -0
package/package.json
CHANGED
package/src/Method.js
CHANGED
|
@@ -303,6 +303,7 @@ class Method {
|
|
|
303
303
|
}
|
|
304
304
|
}
|
|
305
305
|
|
|
306
|
+
// formats, network, apps
|
|
306
307
|
if (displayAsText) {
|
|
307
308
|
if (
|
|
308
309
|
cw.row.formats !== undefined ||
|
|
@@ -313,6 +314,7 @@ class Method {
|
|
|
313
314
|
log();
|
|
314
315
|
}
|
|
315
316
|
|
|
317
|
+
// tested
|
|
316
318
|
if (cw.wallet.tested !== undefined) {
|
|
317
319
|
log(
|
|
318
320
|
red(
|
|
@@ -321,6 +323,7 @@ class Method {
|
|
|
321
323
|
);
|
|
322
324
|
}
|
|
323
325
|
|
|
326
|
+
// formats
|
|
324
327
|
if (
|
|
325
328
|
cw.row.formats !== undefined &&
|
|
326
329
|
Object.keys(cw.row.formats).length > 1
|
|
@@ -340,6 +343,7 @@ class Method {
|
|
|
340
343
|
);
|
|
341
344
|
}
|
|
342
345
|
|
|
346
|
+
// network
|
|
343
347
|
if (cw.row.network == 'EVM' || false) {
|
|
344
348
|
log(
|
|
345
349
|
yellow(
|
|
@@ -370,6 +374,9 @@ class Method {
|
|
|
370
374
|
}
|
|
371
375
|
log(greenBright('ℹ️ You can import this wallet into ' + appsString));
|
|
372
376
|
}
|
|
377
|
+
|
|
378
|
+
// donation
|
|
379
|
+
log(blueBright('🙏 Consider supporting the project - see donation options with: cw --donate'));
|
|
373
380
|
}
|
|
374
381
|
}
|
|
375
382
|
|