@yerofey/cryptowallet-cli 1.23.0 → 1.23.2

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yerofey/cryptowallet-cli",
3
- "version": "1.23.0",
3
+ "version": "1.23.2",
4
4
  "description": "Crypto wallet generator CLI tool",
5
5
  "type": "module",
6
6
  "homepage": "https://github.com/yerofey/cryptowallet-cli",
package/src/Method.js CHANGED
@@ -481,7 +481,7 @@ class Method {
481
481
  cyan(
482
482
  `🔍 Found ${foundCount} matching wallet${
483
483
  foundMany ? 's' : ''
484
- }: 🆔${matchingWalletsIndexes.join(',')}`
484
+ }: 🆔 ${matchingWalletsIndexes.join(',')}`
485
485
  )
486
486
  );
487
487
  }
package/src/Wallet.js CHANGED
@@ -93,8 +93,8 @@ class Wallet {
93
93
  (options.suffix && row.flags.includes('s'))
94
94
  ) {
95
95
  if (badSymbolsArray.length === 0) {
96
- // suggest to generate multiple wallets
97
- if (!options.number || options.number == 1) {
96
+ // suggest to generate multiple wallets addresses (if it is supported by the settings)
97
+ if (row.flags.includes('n') && (!options.number || options.number == 1)) {
98
98
  log(
99
99
  yellow(
100
100
  '💡 You can speed up the process significantly by generating multiple addresses for each wallet. Example: cw -n 10'
@@ -9,7 +9,7 @@
9
9
  "prefixTest": "[0-9a-zA-Z-_]",
10
10
  "rareSymbols": "[0-9]",
11
11
  "apps": ["tonkeeper", "trustwallet"],
12
- "flags": ["m", "n", "p", "s"]
12
+ "flags": ["m", "p", "s"]
13
13
  }
14
14
  }
15
15
  }