@yerofey/cryptowallet-cli 1.5.0 → 1.5.3

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.
Files changed (3) hide show
  1. package/README.md +10 -10
  2. package/package.json +1 -1
  3. package/src/Method.js +1 -1
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # cryptowallet-cli
2
2
 
3
- > Crypto wallet generator CLI tool
3
+ > Crypto wallet generator CLI tool (currently works only on Mac and Linux, sorry Windows users)
4
4
 
5
5
  ![Screenshot](https://i.imgur.com/KBb7NqW.png)
6
6
 
@@ -56,7 +56,7 @@ $ cw -c BNB -f BEP20 -m "radio bright pizza pluck family crawl palm flame forget
56
56
  # generate just a mnemonic string (12 words) to import in any wallet app
57
57
  $ cw -m
58
58
 
59
- # list all supported cryptos
59
+ # list all supported blockchains
60
60
  $ cw -l
61
61
  ```
62
62
 
@@ -89,17 +89,17 @@ $ cw -l
89
89
  *\*all other cryptos that are tokens in the ecosystems like Ethereum, Binance Smart Chain or Polygon and others (EVM compatible) are supported too, you just need to create ERC wallet (that is set by default)*
90
90
 
91
91
  ## Options
92
- * `-c` or `--coin`: Specify the ticker of a coin to generate wallet for
93
- * `-f` or `--format`: Specify cryptocurrency wallet format (for BTC: legacy, segwit, bech32)
92
+ * `-b` or `-c` or `--chain`: Specify the blockchain ticker to generate a wallet for
93
+ * `-f` or `--format`: Specify the blockchain wallet format (for BTC: legacy, segwit, bech32)
94
94
  * `-g` or `--geek`: Display some additional "geeky" info
95
- * `-l` or `--list`: List all supported cryptocurrencies
95
+ * `-l` or `--list`: List all supported blockchains
96
96
  * `-m` or `--mnemonic`: Use a bip39 mnemonic phrase (if is set) to generate wallet, or leave it empty to generate new one
97
97
  * `-n` or `--number`: Specify number of wallets to display (works for HD wallets only, like BTC/LTC/DOGE)
98
- * `-p` or `--prefix`: Specify desired prefix of an wallet address (**case-insensitive**)
99
- * `-P` or `--prefix-sensitive`: Specify desired prefix of an wallet address (**case-sensitive**)
100
- * `-s` or `--suffix`: Specify desired suffix of an wallet address (**case-insensitive**)
101
- * `-S` or `--suffix-sensitive`: Specify desired suffix of an wallet address (**case-sensitive**)
102
- * `-v` or `--version`: Display the version of CW tool
98
+ * `-p` or `--prefix`: Specify desired prefix for the wallet address (**case-insensitive**)
99
+ * `-P` or `--prefix-sensitive`: Specify desired prefix of the wallet address (**case-sensitive**)
100
+ * `-s` or `--suffix`: Specify desired suffix for the wallet address (**case-insensitive**)
101
+ * `-S` or `--suffix-sensitive`: Specify desired suffix for the wallet address (**case-sensitive**)
102
+ * `-v` or `--version`: Display current version of CW tool
103
103
 
104
104
  ## Highlights
105
105
  - 24+ blockchains supported
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yerofey/cryptowallet-cli",
3
- "version": "1.5.0",
3
+ "version": "1.5.3",
4
4
  "homepage": "https://github.com/yerofey/cryptowallet-cli",
5
5
  "author": "Yerofey S. <pm@yerofey.dev> (https://github.com/yerofey)",
6
6
  "bin": {
package/src/Method.js CHANGED
@@ -87,8 +87,8 @@ class Method {
87
87
  }
88
88
 
89
89
  for (const item of cw.wallet.addresses) {
90
- log();
91
90
  if (cw.wallet.addresses.length > 1) {
91
+ log();
92
92
  log(`🆔 ${item.index}`);
93
93
  }
94
94