From 56ff0c3a4470bd34182bda3c9d4b89c4be695aca Mon Sep 17 00:00:00 2001 From: yerofey Date: Fri, 1 Dec 2023 15:08:24 +0100 Subject: [PATCH] v14.1.0: add donation options message --- package.json | 2 +- src/Method.js | 7 +++++++ 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index 079d7c6..7fc70ac 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@yerofey/cryptowallet-cli", - "version": "1.14.0", + "version": "1.14.1", "description": "Crypto wallet generator CLI tool", "type": "module", "homepage": "https://github.com/yerofey/cryptowallet-cli", diff --git a/src/Method.js b/src/Method.js index 9d4cd6f..12aafbe 100644 --- a/src/Method.js +++ b/src/Method.js @@ -303,6 +303,7 @@ class Method { } } + // formats, network, apps if (displayAsText) { if ( cw.row.formats !== undefined || @@ -313,6 +314,7 @@ class Method { log(); } + // tested if (cw.wallet.tested !== undefined) { log( red( @@ -321,6 +323,7 @@ class Method { ); } + // formats if ( cw.row.formats !== undefined && Object.keys(cw.row.formats).length > 1 @@ -340,6 +343,7 @@ class Method { ); } + // network if (cw.row.network == 'EVM' || false) { log( yellow( @@ -370,6 +374,9 @@ class Method { } log(greenBright('ℹī¸ You can import this wallet into ' + appsString)); } + + // donation + log(blueBright('🙏 Consider supporting the project - see donation options with: cw --donate')); } }