@yerofey/cryptowallet-cli 1.8.2 → 1.8.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.
- package/README.md +13 -3
- package/cli.js +0 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
# cryptowallet-cli
|
|
2
|
+
|
|
2
3
|
> Crypto wallet generator CLI tool (currently works only on Mac and Linux, sorry Windows users)
|
|
3
4
|
|
|
4
5
|

|
|
@@ -6,6 +7,7 @@
|
|
|
6
7
|
---
|
|
7
8
|
|
|
8
9
|
## Install
|
|
10
|
+
|
|
9
11
|
```bash
|
|
10
12
|
# via NPM
|
|
11
13
|
$ npm i -g @yerofey/cryptowallet-cli
|
|
@@ -18,6 +20,7 @@ $ yarn global add @yerofey/cryptowallet-cli
|
|
|
18
20
|
```
|
|
19
21
|
|
|
20
22
|
## Usage
|
|
23
|
+
|
|
21
24
|
```bash
|
|
22
25
|
# generate random ERC-like wallet (ETH, BNB, POLYGON, ...)
|
|
23
26
|
$ cw
|
|
@@ -69,6 +72,7 @@ $ cw -l
|
|
|
69
72
|
```
|
|
70
73
|
|
|
71
74
|
## Blockchains supported
|
|
75
|
+
|
|
72
76
|
- `BTC` (Bitcoin) [legacy, segwit, bech32]
|
|
73
77
|
- `ETH` (Ethereum)
|
|
74
78
|
- `BNB` (Binance Coin) [BEP2, BEP20, ERC20]
|
|
@@ -93,9 +97,10 @@ $ cw -l
|
|
|
93
97
|
- `BLK` (BlackCoin)
|
|
94
98
|
- `VIA` (Viacoin)
|
|
95
99
|
- `NBT` (NIX Bridge Token)
|
|
96
|
-
_\*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)_
|
|
100
|
+
_\*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)_
|
|
97
101
|
|
|
98
102
|
## Options
|
|
103
|
+
|
|
99
104
|
- `-b` or `-c` or `--chain`: Specify the blockchain ticker to generate a wallet for
|
|
100
105
|
- `-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
106
|
- `-f` or `--format`: Specify the blockchain wallet format (for BTC: legacy, segwit, bech32)
|
|
@@ -108,15 +113,17 @@ _\*all other cryptos that are tokens in the ecosystems like Ethereum, Binance Sm
|
|
|
108
113
|
- `-s` or `--suffix`: Specify desired suffix for the wallet address (**case-insensitive**)
|
|
109
114
|
- `-S` or `--suffix-sensitive`: Specify desired suffix for the wallet address (**case-sensitive**)
|
|
110
115
|
- `-v` or `--version`: Display current version of CW tool
|
|
111
|
-
**Currently not necessary options:**
|
|
116
|
+
**Currently not necessary options:**
|
|
112
117
|
- `-F` or `--filename`: Specify a filename (without extension) to output the data (works only with `-o` argument)
|
|
113
118
|
- `-o` or `--output`: Specify a file format (currently only `csv` supported) to output the generated data
|
|
114
119
|
|
|
115
120
|
## Node.js supported versions
|
|
121
|
+
|
|
116
122
|
- ✅ v16.0-v16.x
|
|
117
123
|
- ⛔ v17.x-v18.x
|
|
118
124
|
|
|
119
125
|
## Highlights
|
|
126
|
+
|
|
120
127
|
- 24+ blockchains supported
|
|
121
128
|
- Generate wallet with desired prefix/suffix
|
|
122
129
|
- Generate wallet from mnemonic
|
|
@@ -124,6 +131,7 @@ _\*all other cryptos that are tokens in the ecosystems like Ethereum, Binance Sm
|
|
|
124
131
|
- Works fully offline
|
|
125
132
|
|
|
126
133
|
## TODO
|
|
134
|
+
|
|
127
135
|
- Windows support
|
|
128
136
|
- Show SegWit Bech32 BTC change addresses with additional flag
|
|
129
137
|
- SegWit Bech32 wallet address support for all Bitcoin forks
|
|
@@ -131,9 +139,11 @@ _\*all other cryptos that are tokens in the ecosystems like Ethereum, Binance Sm
|
|
|
131
139
|
- tests
|
|
132
140
|
|
|
133
141
|
## Author
|
|
142
|
+
|
|
134
143
|
[Yerofey S.](https://github.com/yerofey)
|
|
135
144
|
|
|
136
|
-
Contact me: [Email](mailto:pm@yerofey.dev), [Telegram](https://t.me/
|
|
145
|
+
Contact me: [Email](mailto:pm@yerofey.dev), [Telegram](https://t.me/etofej)
|
|
137
146
|
|
|
138
147
|
## License
|
|
148
|
+
|
|
139
149
|
[MIT](https://github.com/yerofey/cryptowallet-cli/blob/master/LICENSE)
|
package/cli.js
CHANGED
|
File without changes
|