Code refactoring
This commit is contained in:
parent
109e373896
commit
df79bf60be
6 changed files with 489 additions and 3269 deletions
|
@ -20,16 +20,17 @@ Install dependencies
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
npm i
|
npm i
|
||||||
|
npm i -g gulp
|
||||||
```
|
```
|
||||||
|
|
||||||
Run the watcher to compile while you code
|
Run the watcher to compile while you code
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
npm run-script watch
|
gulp watch # or npm run-script watch
|
||||||
```
|
```
|
||||||
|
|
||||||
Build before pushing to production
|
Build before pushing to production
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
npm run-script build
|
gulp # or npm run-script build
|
||||||
```
|
```
|
||||||
|
|
File diff suppressed because one or more lines are too long
27
js/index.js
27
js/index.js
|
@ -25,7 +25,6 @@ new Vue({
|
||||||
count: 0,
|
count: 0,
|
||||||
firstTick: null,
|
firstTick: null,
|
||||||
running: false,
|
running: false,
|
||||||
step: 500,
|
|
||||||
speed: '0 addr/s',
|
speed: '0 addr/s',
|
||||||
status: 'Waiting',
|
status: 'Waiting',
|
||||||
workers: [],
|
workers: [],
|
||||||
|
@ -76,6 +75,7 @@ new Vue({
|
||||||
clearResult: function () {
|
clearResult: function () {
|
||||||
this.result.address = '';
|
this.result.address = '';
|
||||||
this.result.privateKey = '';
|
this.result.privateKey = '';
|
||||||
|
this.incrementCounter(-this.count);
|
||||||
},
|
},
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -110,20 +110,22 @@ new Vue({
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
parseWorkerMessage: function (add, w) {
|
parseWorkerMessage: function (wallet, w) {
|
||||||
if (add !== null) {
|
if (wallet.error) {
|
||||||
this.stopGen();
|
this.stopGen();
|
||||||
if (add.error) {
|
this.error = wallet.error;
|
||||||
this.error = add.error;
|
this.status = 'Error';
|
||||||
return;
|
return;
|
||||||
}
|
|
||||||
|
|
||||||
return this.displayResult(add);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
this.incrementCounter(this.step);
|
if (wallet.address) {
|
||||||
|
this.stopGen();
|
||||||
|
return this.displayResult(wallet);
|
||||||
|
}
|
||||||
|
|
||||||
this.workers[w].postMessage({input: this.input, step: this.step});
|
this.incrementCounter(wallet.attempts);
|
||||||
|
|
||||||
|
this.workers[w].postMessage(this.input);
|
||||||
},
|
},
|
||||||
|
|
||||||
startGen: function () {
|
startGen: function () {
|
||||||
|
@ -132,12 +134,11 @@ new Vue({
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
this.incrementCounter(-this.count);
|
|
||||||
this.clearResult();
|
this.clearResult();
|
||||||
this.running = true;
|
this.running = true;
|
||||||
|
|
||||||
for (let w = 0; w < this.workers.length; w++) {
|
for (let w = 0; w < this.workers.length; w++) {
|
||||||
this.workers[w].postMessage({input: this.input, step: this.step});
|
this.workers[w].postMessage(this.input);
|
||||||
}
|
}
|
||||||
|
|
||||||
this.status = 'Running';
|
this.status = 'Running';
|
||||||
|
|
27
js/vanity.js
27
js/vanity.js
|
@ -3,6 +3,8 @@
|
||||||
const ethUtils = require('ethereumjs-util');
|
const ethUtils = require('ethereumjs-util');
|
||||||
const randomBytes = require('randombytes');
|
const randomBytes = require('randombytes');
|
||||||
|
|
||||||
|
const step = 500;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create a wallet from a random private key
|
* Create a wallet from a random private key
|
||||||
* @returns {{address: string, privKey: string}}
|
* @returns {{address: string, privKey: string}}
|
||||||
|
@ -45,31 +47,30 @@ const isValidVanityWallet = (wallet, input, isChecksum) => {
|
||||||
* Generate a lot of wallets until one satisfies the input constraints
|
* Generate a lot of wallets until one satisfies the input constraints
|
||||||
* @param input
|
* @param input
|
||||||
* @param isChecksum
|
* @param isChecksum
|
||||||
* @param max - Stop the generation after <max> attempts. Set to 0 for unlimited
|
* @param cb - Callback called after x attempts, or when an address if found
|
||||||
* @returns
|
* @returns
|
||||||
*/
|
*/
|
||||||
const getVanityWallet = (input, isChecksum, max) => {
|
const getVanityWallet = (input, isChecksum, cb) => {
|
||||||
input = isChecksum ? input : input.toLowerCase();
|
input = isChecksum ? input : input.toLowerCase();
|
||||||
let _wallet = getRandomWallet();
|
let wallet = getRandomWallet();
|
||||||
let attempts = 1;
|
let attempts = 1;
|
||||||
|
|
||||||
while (!isValidVanityWallet(_wallet, input, isChecksum)) {
|
while (!isValidVanityWallet(wallet, input, isChecksum)) {
|
||||||
_wallet = getRandomWallet();
|
if (attempts >= step) {
|
||||||
attempts++;
|
cb({attempts});
|
||||||
if (max && attempts >= max) {
|
attempts = 0;
|
||||||
return null;
|
|
||||||
}
|
}
|
||||||
|
wallet = getRandomWallet();
|
||||||
|
attempts++;
|
||||||
}
|
}
|
||||||
|
|
||||||
_wallet.address = ethUtils.toChecksumAddress(_wallet.address);
|
cb({address: ethUtils.toChecksumAddress(wallet.address), attempts});
|
||||||
_wallet.attempts = attempts;
|
|
||||||
return _wallet;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
onmessage = function (event) {
|
onmessage = function (event) {
|
||||||
const data = event.data;
|
const input = event.data;
|
||||||
try {
|
try {
|
||||||
postMessage(getVanityWallet(data.input.prefix, data.input.checksum, data.step));
|
getVanityWallet(input.prefix, input.checksum, message => postMessage(message));
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
postMessage({error: err.toString()});
|
postMessage({error: err.toString()});
|
||||||
}
|
}
|
||||||
|
|
3688
package-lock.json
generated
3688
package-lock.json
generated
File diff suppressed because it is too large
Load diff
|
@ -19,9 +19,6 @@
|
||||||
"vinyl-source-stream": "^1.1.0",
|
"vinyl-source-stream": "^1.1.0",
|
||||||
"xo": "^0.18.2"
|
"xo": "^0.18.2"
|
||||||
},
|
},
|
||||||
"xo": {
|
|
||||||
"rules": {"object-shorthand": "off", "no-new": "off"}
|
|
||||||
},
|
|
||||||
"license": "ISC",
|
"license": "ISC",
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
@ -29,5 +26,11 @@
|
||||||
"precommit": "npm run-script build && git add js/bundle.js css/stylesheet.css",
|
"precommit": "npm run-script build && git add js/bundle.js css/stylesheet.css",
|
||||||
"test": "node ./node_modules/xo/cli.js",
|
"test": "node ./node_modules/xo/cli.js",
|
||||||
"watch": "node ./node_modules/gulp/bin/gulp.js watch"
|
"watch": "node ./node_modules/gulp/bin/gulp.js watch"
|
||||||
|
},
|
||||||
|
"xo": {
|
||||||
|
"rules": {
|
||||||
|
"object-shorthand": "off",
|
||||||
|
"no-new": "off"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue