Compute difficulty and probability, add stop button & checksum checkbox
This commit is contained in:
parent
3b35d63a10
commit
a2fcb0e686
6 changed files with 1601 additions and 27 deletions
21
index.html
21
index.html
|
@ -8,11 +8,24 @@
|
||||||
<title>Vanity ETH</title>
|
<title>Vanity ETH</title>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<input type="text" value="ab" id="pattern">
|
<div>
|
||||||
<input type="button" id="btn" value="Generate">
|
<label for="pattern">Pattern</label>
|
||||||
<div id="counter-wrapper">
|
<input type="text" value="ab" id="pattern">
|
||||||
<div id="counter"></div>
|
|
||||||
</div>
|
</div>
|
||||||
|
<div>
|
||||||
|
<label for="checksum">Case-sensitive</label>
|
||||||
|
<input type="checkbox" id="checksum" checked>
|
||||||
|
</div>
|
||||||
|
<button id="gen">
|
||||||
|
Generate
|
||||||
|
</button>
|
||||||
|
<button id="stop">
|
||||||
|
Stop
|
||||||
|
</button>
|
||||||
|
<div id="difficulty"></div>
|
||||||
|
<div id="counter"></div>
|
||||||
|
<div id="speed"></div>
|
||||||
|
<div id="probability"></div>
|
||||||
<div id="result"></div>
|
<div id="result"></div>
|
||||||
<script src="js/bundle.js" type="text/javascript"></script>
|
<script src="js/bundle.js" type="text/javascript"></script>
|
||||||
</body>
|
</body>
|
||||||
|
|
File diff suppressed because one or more lines are too long
47
js/index.js
47
js/index.js
|
@ -3,24 +3,39 @@
|
||||||
const vanity = require('./vanity');
|
const vanity = require('./vanity');
|
||||||
|
|
||||||
let count = 0;
|
let count = 0;
|
||||||
const step = 100;
|
let stop = false;
|
||||||
|
let lastTick = null;
|
||||||
|
let difficulty = 0;
|
||||||
|
const step = 250;
|
||||||
const counter = document.getElementById('counter');
|
const counter = document.getElementById('counter');
|
||||||
|
const speed = document.getElementById('speed');
|
||||||
|
const probability = document.getElementById('probability');
|
||||||
|
|
||||||
const parseInput = () => {
|
const parseInput = () => {
|
||||||
return {
|
return {
|
||||||
pattern: document.getElementById('pattern').value,
|
pattern: document.getElementById('pattern').value,
|
||||||
checksum: true
|
checksum: document.getElementById('checksum').checked
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
const incrementCounter = incr => {
|
const incrementCounter = incr => {
|
||||||
count += incr;
|
count += incr;
|
||||||
counter.innerHTML = count.toString() + ' addresses generated';
|
counter.innerText = count.toString() + (count === 1 ? ' address' : ' addresses') + ' generated';
|
||||||
|
|
||||||
|
const currentTick = performance.now();
|
||||||
|
speed.innerText = Math.floor(1000 * incr / (currentTick - lastTick)) + ' addresses / second';
|
||||||
|
lastTick = currentTick;
|
||||||
|
};
|
||||||
|
|
||||||
|
const updateStats = () => {
|
||||||
|
const prob = Math.round(10000 * vanity.computeProbability(difficulty, count)) / 100;
|
||||||
|
probability.innerText = 'Probability: ' + prob + '%';
|
||||||
};
|
};
|
||||||
|
|
||||||
const displayResult = result => {
|
const displayResult = result => {
|
||||||
incrementCounter(result.attempts);
|
incrementCounter(result ? result.attempts : 0);
|
||||||
document.getElementById('result').innerHTML = 'address: ' + result.address + '<br>key: ' + result.privKey;
|
updateStats();
|
||||||
|
document.getElementById('result').innerHTML = result ? 'address: ' + result.address + '<br>key: ' + result.privKey : '';
|
||||||
};
|
};
|
||||||
|
|
||||||
const generate = input => {
|
const generate = input => {
|
||||||
|
@ -30,16 +45,28 @@ const generate = input => {
|
||||||
}
|
}
|
||||||
|
|
||||||
incrementCounter(step);
|
incrementCounter(step);
|
||||||
|
updateStats();
|
||||||
|
|
||||||
|
if (stop) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
// Use setTimeout to let the browser render
|
// Use setTimeout to let the browser render
|
||||||
setTimeout(() => {
|
setTimeout(() => generate(input), 0);
|
||||||
generate(input);
|
|
||||||
}, 0);
|
|
||||||
};
|
};
|
||||||
|
|
||||||
// Add event listener on button
|
// Add event listeners on buttons
|
||||||
document.getElementById('btn').addEventListener('click', () => {
|
document.getElementById('gen').addEventListener('click', () => {
|
||||||
incrementCounter(-count);
|
incrementCounter(-count);
|
||||||
|
displayResult(null);
|
||||||
|
stop = false;
|
||||||
|
|
||||||
const input = parseInput();
|
const input = parseInput();
|
||||||
|
difficulty = vanity.computeDifficulty(input.pattern, input.checksum);
|
||||||
|
document.getElementById('difficulty').innerText = 'difficulty: ' + difficulty;
|
||||||
generate(input);
|
generate(input);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
document.getElementById('stop').addEventListener('click', () => {
|
||||||
|
stop = true;
|
||||||
|
});
|
||||||
|
|
18
js/vanity.js
18
js/vanity.js
|
@ -6,7 +6,7 @@ const ERRORS = {
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create a random wallet from a random private key
|
* Create a wallet from a random private key
|
||||||
* @returns {{address: string, privKey: string}}
|
* @returns {{address: string, privKey: string}}
|
||||||
*/
|
*/
|
||||||
const getRandomWallet = () => {
|
const getRandomWallet = () => {
|
||||||
|
@ -37,6 +37,14 @@ const isValidVanityWallet = (wallet, input, isChecksum) => {
|
||||||
return address.substr(2, input.length) === input;
|
return address.substr(2, input.length) === input;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
const computeDifficulty = (pattern, isChecksum) => {
|
||||||
|
return Math.pow(isChecksum ? 22 : 16, pattern.length);
|
||||||
|
};
|
||||||
|
|
||||||
|
const computeProbability = (difficulty, attempts) => {
|
||||||
|
return 1 - Math.pow((difficulty - 1) / difficulty, attempts);
|
||||||
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 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
|
||||||
|
@ -60,14 +68,14 @@ const getVanityWallet = (input, isChecksum, max) => {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (isChecksum) {
|
|
||||||
_wallet.address = ethUtils.toChecksumAddress(_wallet.address);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
_wallet.address = ethUtils.toChecksumAddress(_wallet.address);
|
||||||
_wallet.attempts = attempts;
|
_wallet.attempts = attempts;
|
||||||
return _wallet;
|
return _wallet;
|
||||||
};
|
};
|
||||||
|
|
||||||
module.exports = {
|
module.exports = {
|
||||||
getVanityWallet
|
getVanityWallet,
|
||||||
|
computeDifficulty,
|
||||||
|
computeProbability
|
||||||
};
|
};
|
||||||
|
|
1527
package-lock.json
generated
1527
package-lock.json
generated
File diff suppressed because it is too large
Load diff
13
package.json
13
package.json
|
@ -9,19 +9,18 @@
|
||||||
"gulp": "^3.9.1",
|
"gulp": "^3.9.1",
|
||||||
"gulp-babel": "^7.0.0",
|
"gulp-babel": "^7.0.0",
|
||||||
"gulp-uglify": "^3.0.0",
|
"gulp-uglify": "^3.0.0",
|
||||||
|
"husky": "^0.14.3",
|
||||||
"pump": "^2.0.0",
|
"pump": "^2.0.0",
|
||||||
"randombytes": "^2.0.5",
|
"randombytes": "^2.0.5",
|
||||||
"vinyl-source-stream": "^1.1.0"
|
"vinyl-source-stream": "^1.1.0",
|
||||||
|
"xo": "^0.18.2"
|
||||||
},
|
},
|
||||||
"license": "ISC",
|
"license": "ISC",
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"build": "node ./node_modules/gulp/bin/gulp.js build",
|
"build": "node ./node_modules/gulp/bin/gulp.js build",
|
||||||
"test": "echo \"Error: no test specified\" && exit 1",
|
"precommit": "npm run-script build && git add js/bundle.js",
|
||||||
"watch": "node ./node_modules/gulp/bin/gulp.js watch",
|
"test": "node ./node_modules/xo/cli.js",
|
||||||
"precommit": "npm run-script build && git add js/bundle.js"
|
"watch": "node ./node_modules/gulp/bin/gulp.js watch"
|
||||||
},
|
|
||||||
"devDependencies": {
|
|
||||||
"husky": "^0.14.3"
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue