-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathaddressGeneratorCli.js
363 lines (278 loc) · 11.3 KB
/
addressGeneratorCli.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
/**
* TODO
* 'options' is passed to functions AND called internally. Streamline this a bit.
*/
const fs = require('fs')
const HdAddGen = require('hdaddressgenerator')
const colors = require('colors')
class AddressGeneratorCli {
validRequests = ["help","generateMnemonic","supportedWordlists","supportedCoins","withSeed","withMnemonic","withMnemonicBIP32","withSeedBIP32","withMnemonicBIP141","withSeedBIP141","withExtPub"]
shortOptionEquivalents = {
"m":"mnemonic",
"h":"hardened",
"phrase":"passPhrase",
"acc":"account",
"ch":"change",
"pass":"bip38Password",
"path":"customPath",
"algo":"hashAlgo",
"s":"startIndex",
"t":"total",
"ca":"convertAddress",
"wl":"wordlist",
"st":"strength"
}
requireOptions = {
"help":[],
"generateMnemonic":["wordlist","strength"],
"withSeed":["seed"],
"withMnemonic":["mnemonic"],
"withMnemonicBIP32":["mnemonic","customPath"],
"withSeedBIP32":["seed","customPath"],
"withMnemonicBIP141":["mnemonic","customPath","hashAlgo"],
"withSeedBIP141":["seed","customPath","hashAlgo"],
"withExtPub":["extPub","coin"]
}
defaultOptions = {
passPhrase:false,
hardened:false,
coin:"BTC",
bip:44,
account:0,
change:0,
bip38Password:false,
customPath:false,
hashAlgo:false,
startIndex:0,
total:10,
format:"json",
hideRootKeys:false,
hidePrivateKeys:false,
file:false,
convertAddress:false,
strength:128,
wordlist:"english",
}
validOptions = {
bip:[32,44,49,84,142],
format:["json","table","csv"],
addressConversion:["cashAddress","bitpayAddress","bchSlp"]
}
options = {}
results = {}
hdAdd = {}
args = {}
constructor(args){
this.args = args
}
/**
* Generate deterministic addresses based on process.argv data.
* @returns obj
*/
async generate(){
try{
this.options = await this.processInput(this.args)
this.hdAdd = await this.processCommand(this.options)
this.results = await this.generateKeys()
} catch (e) {
throw e
}
return this.results
}
/**
* Generate a random BIP 39 Mnemonic and Seed
* @returns object
*/
async generateMnemonic(){
try{
this.options = await this.processInput(this.args)
this.hdAdd = await this.processCommand(this.options)
this.results = await HdAddGen.generateMnemonic(this.options.wordlist,this.options.strength)
} catch (e) {
throw e
}
return this.results
}
/**
* Returns a list of supported wordlists for generating BIP 39 mnemonics.
* @returns string
*/
static async getWordlists(){
return HdAddGen.getSupportedWordLists()
}
/**
* Takes raw process.argv input, validates it, adds in missing defaults and
* sanitizes it for address generation.
* @param {array} args Raw process.argv input.
* @returns obj
*/
async processInput(args){
let submittedOptions = {}
try{
submittedOptions = await this.processOptions(args,this.defaultOptions)
submittedOptions.command = args[2]
await this.validateOptions(submittedOptions)
} catch (e){
throw(e)
}
return submittedOptions
}
/**
* Based on submitted object, returns HdAddressGenerator object.
* @param {obj} options
* @returns obj
*/
async processCommand(options){
let hdAdd = {}
try{
if ( options.command == "withSeed") hdAdd = HdAddGen.withSeed(options.seed,options.coin,options.hardened,options.bip,options.account,options.change,options.bip38Password)
if ( options.command == "withMnemonic") hdAdd = HdAddGen.withMnemonic(options.mnemonic,options.passPhrase,options.coin,options.hardened,options.bip,options.account,options.change,options.bip38Password)
if ( options.command == "withSeedBIP32") hdAdd = HdAddGen.withSeedBIP32(options.seed,options.coin,options.customPath,options.hardened,options.bip38Password)
if ( options.command == "withMnemonicBIP32") hdAdd = HdAddGen.withMnemonicBIP32(options.mnemonic,options.passPhrase,options.coin,options.customPath,options.hardened,options.bip38Password)
if ( options.command == "withSeedBIP141") hdAdd = HdAddGen.withSeedBIP141(options.seed,options.coin,options.customPath,options.hashAlgo,options.hardened,options.bip38Password)
if ( options.command == "withMnemonicBIP141") hdAdd = HdAddGen.withMnemonicBIP141(options.mnemonic,options.passPhrase,options.coin,options.customPath,options.hashAlgo,options.hardened,options.bip38Password)
if ( options.command == "withExtPub") hdAdd = HdAddGen.withExtPub(options.extPub,options.coin,options.bip,options.account,options.change)
} catch (e){
throw e
}
return hdAdd
}
/**
* Prepare and format rootKeys and addresses.
* @returns obj
*/
async generateKeys(){
let results = {}
results.rootKeys = {}
results.rootKeys.hashAlgo = this.hdAdd.hashAlgo
results.rootKeys.bip32Path = this.hdAdd.bip32Path
results.rootKeys.bip32Seed = this.hdAdd.bip32Seed
results.rootKeys.bip32RootKey = this.hdAdd.bip32RootKey
results.rootKeys.accountXprivKey = ( !this.options.hidePrivateKeys ) ? this.hdAdd.accountXprivKey : "REDACTED"
results.rootKeys.accountXpubKey = this.hdAdd.accountXpubKey
results.rootKeys.bip32XprivKey = ( !this.options.hidePrivateKeys ) ? this.hdAdd.bip32XprivKey : "REDACTED"
results.rootKeys.bip32XpubKey = this.hdAdd.bip32XpubKey
results.addresses = []
try {
let fullAddresses = await this.hdAdd.generate(this.options.total,this.options.startIndex)
fullAddresses.forEach(address => {
results.addresses.push({
path:address.path,
address: ( this.options.convertAddress != false ) ? this.hdAdd.convertAddress(address.address,this.options.convertAddress) : address.address,
pubKey:address.pubKey,
privKey:( ( !this.options.hidePrivateKeys ) ? address.privKey : "REDACTED")
})
})
} catch (e){
throw(e)
}
return results
}
/**
* Formats and logs to console address generation data.
*/
async processOutput(){
let format = this.options.format
if ( format == "json" ){
console.log(JSON.stringify(this.results,null,4))
}
if ( format == "table" ){
if ( !this.options.hideRootKeys ) console.table(this.results.rootKeys )
console.table(this.results.addresses )
}
if ( format == "csv" ){
if ( !this.options.hideRootKeys ) {
for (const key in this.results.rootKeys) {
console.log(`${key},${this.results.rootKeys[key]}`)
}
}
this.results.addresses.forEach(address => {
console.log(`${address.path},${address.address},${address.pubKey},${address.privKey}`)
})
}
}
/**
* Converts, sanitizes, validates, and prepares user submitted options.
* @param {array} args process.argv array.
* @param {obj} options
* @returns
*/
async processOptions(args,options){
let command = args[2]
if( !this.validRequests.includes(command) ) {
throw `Invalid command. Supported commands: ${this.validRequests.join(", ")}.`
}
for (let i = 3; i < args.length; i++) {
let rawOption = ""
if ( args[i].substring(0, 2) == "--" ){
rawOption = args[i].substring(2, args[i].length)
} else if ( args[i].substring(0, 1) == "-" ){
rawOption = args[i].substring(1, args[i].length)
} else {
throw `${args[i]} is an invalid option or the formatting is incorrect.`
}
let optionArray = rawOption.split("=")
if ( optionArray[1] == undefined ){
throw `${args[i]} is an invalid option or the formatting is incorrect.`
}
// Convert short options to extended option keys.
if ( this.shortOptionEquivalents[optionArray[0]] != undefined ){
optionArray[0] = this.shortOptionEquivalents[optionArray[0]]
}
// Convert input strings to correct types.
if ( optionArray[1] == "true" ){
options[optionArray[0]] = true
} else if ( optionArray[1] == "false" ){
options[optionArray[0]] = false
} else if ( !isNaN(optionArray[1]) ) {
options[optionArray[0]] = parseInt(optionArray[1])
} else {
options[optionArray[0]] = optionArray[1]
}
}
// If a key file is specified load the key file.
options = ( options.file != false ) ? await this.loadFile(options) : options
this.requireOptions[command].forEach( requiredOption => {
if ( options[requiredOption] == undefined ){
throw `Command: ${command} is missing a required options. Required options: ${this.requireOptions[command].join(", ")}`
}
})
return options
}
/**
* Validates options against constants.
* @param {obj} options
*/
async validateOptions( options ){
if ( !this.validOptions.bip.includes(parseInt(options.bip)) ){
throw `BIP value: ${options.bip} is not supported. Supported BIP: ${this.validOptions.bip.join(", ")}`
}
if ( !this.validOptions.format.includes(options.format) ){
throw `Format value: ${options.format} is not supported. Supported Formats: ${this.validOptions.format.join(", ")}`
}
if ( options.convertAddress != false && !this.validOptions.addressConversion.includes(options.convertAddress) ){
throw `Convert address value: ${options.convertAddress} is not supported. Supported Formats: ${this.validOptions.addressConversion.join(", ")}`
}
}
/**
* Loads external key or mnemonic file.
* @param {obj} options
* @returns
*/
async loadFile(options){
let fileContents = {}
try{
fileContents = JSON.parse(fs.readFileSync(options.file))
} catch (e){
throw `File expected to be in JSON format. See ReadMe for file format details. `
}
if ( fileContents.mnemonic != undefined ){
options.mnemonic = fileContents.mnemonic
}
if ( fileContents.seed != undefined ){
options.seed = fileContents.seed
}
return options
}
}
module.exports = AddressGeneratorCli