@yerofey/cryptowallet-cli 1.8.0 → 1.8.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.
Files changed (2) hide show
  1. package/README.md +4 -3
  2. package/package.json +4 -4
package/README.md CHANGED
@@ -97,19 +97,20 @@ _\*all other cryptos that are tokens in the ecosystems like Ethereum, Binance Sm
97
97
 
98
98
  ## Options
99
99
  - `-b` or `-c` or `--chain`: Specify the blockchain ticker to generate a wallet for
100
- - `-f` or `--format`: Specify the blockchain wallet format (for BTC: legacy, segwit, bech32)
101
- - `-F` or `--filename`: Specify a filename (without extension) to output the data (works only with `-o` argument)
102
100
  - `-D` or `--csv`: Save output into CSV file with custom or default name ("`cw-output.csv`") - this is a shorthand for `-o csv -F filename`
101
+ - `-f` or `--format`: Specify the blockchain wallet format (for BTC: legacy, segwit, bech32)
103
102
  - `-g` or `--geek`: Display some additional "geeky" info
104
103
  - `-l` or `--list`: List all supported blockchains
105
104
  - `-m` or `--mnemonic`: Use a bip39 mnemonic phrase (if is set) to generate wallet, or leave it empty to generate new one
106
105
  - `-n` or `--number`: Specify number of wallets to display (works for HD wallets only, like BTC/LTC/DOGE)
107
- - `-o` or `--output`: Specify a file format (currently only `csv` supported) to output the generated data
108
106
  - `-p` or `--prefix`: Specify desired prefix for the wallet address (**case-insensitive**)
109
107
  - `-P` or `--prefix-sensitive`: Specify desired prefix of the wallet address (**case-sensitive**)
110
108
  - `-s` or `--suffix`: Specify desired suffix for the wallet address (**case-insensitive**)
111
109
  - `-S` or `--suffix-sensitive`: Specify desired suffix for the wallet address (**case-sensitive**)
112
110
  - `-v` or `--version`: Display current version of CW tool
111
+ **Currently not necessary options:**
112
+ - `-F` or `--filename`: Specify a filename (without extension) to output the data (works only with `-o` argument)
113
+ - `-o` or `--output`: Specify a file format (currently only `csv` supported) to output the generated data
113
114
 
114
115
  ## Node.js supported versions
115
116
  - ✅ v16.0-v16.x
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yerofey/cryptowallet-cli",
3
- "version": "1.8.0",
3
+ "version": "1.8.2",
4
4
  "type": "module",
5
5
  "homepage": "https://github.com/yerofey/cryptowallet-cli",
6
6
  "author": "Yerofey S. <pm@yerofey.dev> (https://github.com/yerofey)",
@@ -67,7 +67,7 @@
67
67
  "@yerofey/litecoin-bip84": "^0.0.5",
68
68
  "bip39": "3.0.4",
69
69
  "bip84": "0.2.7",
70
- "chalk": "5.0.1",
70
+ "chalk": "5.1.2",
71
71
  "coininfo": "5.2.1",
72
72
  "coinkey": "3.0.0",
73
73
  "columnify": "1.6.0",
@@ -80,7 +80,7 @@
80
80
  "tronweb": "4.4.0"
81
81
  },
82
82
  "devDependencies": {
83
- "ava": "^4.3.3",
84
- "eslint": "^8.24.0"
83
+ "ava": "^5.1.0",
84
+ "eslint": "^8.27.0"
85
85
  }
86
86
  }