Skip to content

Commit

Permalink
v14.1.0: add donation options message
Browse files Browse the repository at this point in the history
  • Loading branch information
yerofey committed Dec 1, 2023
1 parent 5104a67 commit 56ff0c3
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
7 changes: 7 additions & 0 deletions src/Method.js
Original file line number Diff line number Diff line change
Expand Up @@ -303,6 +303,7 @@ class Method {
}
}

// formats, network, apps
if (displayAsText) {
if (
cw.row.formats !== undefined ||
Expand All @@ -313,6 +314,7 @@ class Method {
log();
}

// tested
if (cw.wallet.tested !== undefined) {
log(
red(
Expand All @@ -321,6 +323,7 @@ class Method {
);
}

// formats
if (
cw.row.formats !== undefined &&
Object.keys(cw.row.formats).length > 1
Expand All @@ -340,6 +343,7 @@ class Method {
);
}

// network
if (cw.row.network == 'EVM' || false) {
log(
yellow(
Expand Down Expand Up @@ -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'));
}
}

Expand Down

0 comments on commit 56ff0c3

Please sign in to comment.