@yerofey/cryptowallet-cli 1.22.0 → 1.22.1
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/README.md +7 -5
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -10,14 +10,16 @@
|
|
|
10
10
|
|
|
11
11
|
## Features
|
|
12
12
|
|
|
13
|
-
- [x] Generate new crypto wallet offline
|
|
14
|
-
- [x] Generate wallet address with prefix (string at the start): [`-p`]
|
|
15
|
-
- [x] Generate wallet address with suffix (string at the end): [`-s`]
|
|
13
|
+
- [x] Generate brand new crypto wallet address (offline)
|
|
14
|
+
- [x] Generate wallet address with prefix (string at the start): [`-p`] or [`-P`] (case-sensitive)
|
|
15
|
+
- [x] Generate wallet address with suffix (string at the end): [`-s`] or [`-S`] (case-sensitive)
|
|
16
16
|
- [x] Generate wallet with different formats (for Bitcoin: Legacy, SegWit, Bech32; for BNB: BEP2, BEP20): [`-f`]
|
|
17
17
|
- [x] Generate wallet from your desired mnemonic string: [`-m`]
|
|
18
|
-
- [x] Generate
|
|
18
|
+
- [x] Generate mnemonic string: [`-m`] or [`-m 12`] or [`-m 15`] or [`-m 18`] or [`-m 21`] or [`-m 24`]
|
|
19
19
|
- [x] Generate a lot of wallets at once: [`-n`]
|
|
20
20
|
- [x] Save result into a CSV file: [`--csv`]
|
|
21
|
+
- [x] Copy the generated mnemonic to the clipboard: [`-C` or `--copy`]
|
|
22
|
+
- [x] Display some additional "geeky" info: [`-g`]
|
|
21
23
|
|
|
22
24
|
*check the Options section for all supported commands*
|
|
23
25
|
|
|
@@ -37,7 +39,7 @@ $ yarn global add @yerofey/cryptowallet-cli
|
|
|
37
39
|
## Usage
|
|
38
40
|
|
|
39
41
|
```bash
|
|
40
|
-
# generate random
|
|
42
|
+
# generate random EVM-compatible wallet (for Ethereum, Polygon, any L1/L2 EVM-compatible chain, etc.)
|
|
41
43
|
$ cw
|
|
42
44
|
|
|
43
45
|
# generate random BTC wallet (default format: bech32 - "bc1q...")
|