Fix uppercase input bug & typos
This commit is contained in:
parent
925280cc01
commit
976fec1ee9
3 changed files with 12 additions and 7 deletions
|
@ -1,6 +1,7 @@
|
||||||
# Vanity-ETH
|
# Vanity-ETH
|
||||||
|
|
||||||
[](https://travis-ci.org/bokub/vanity-eth)
|
[](https://travis-ci.org/bokub/vanity-eth)
|
||||||
|
[](https://raw.githubusercontent.com/bokub/vanity-eth/master/LICENSE)
|
||||||
[](https://codeclimate.com/github/bokub/vanity-eth/maintainability)
|
[](https://codeclimate.com/github/bokub/vanity-eth/maintainability)
|
||||||
|
|
||||||
Browser-based ETH vanity address generator
|
Browser-based ETH vanity address generator
|
||||||
|
@ -14,7 +15,7 @@ Just type [`git.io/veth`](https://git.io/veth) to use it ⚡️
|
||||||
|
|
||||||
First of all, visit [`git.io/veth`](https://git.io/veth)
|
First of all, visit [`git.io/veth`](https://git.io/veth)
|
||||||
|
|
||||||
Enter the prefix of your choice below, then click 'generate' to start. You browser is going to generate a ton of random
|
Enter the prefix of your choice, then click 'generate' to start. Your browser is going to generate a ton of random
|
||||||
addresses until one of them starts with your prefix.
|
addresses until one of them starts with your prefix.
|
||||||
|
|
||||||
Once an address is found, you can reveal the private key, or click the 'save' button to download a password-encrypted keystore file.
|
Once an address is found, you can reveal the private key, or click the 'save' button to download a password-encrypted keystore file.
|
||||||
|
@ -71,3 +72,7 @@ npm run build
|
||||||
```
|
```
|
||||||
|
|
||||||
The Travis CI bot 🤖 is in charge of building and deploying Vanity-ETH to Github pages.
|
The Travis CI bot 🤖 is in charge of building and deploying Vanity-ETH to Github pages.
|
||||||
|
|
||||||
|
## Tips
|
||||||
|
|
||||||
|
`0xAceBabe64807cb045505b268ef253D8fC2FeF5Bc`
|
|
@ -25,11 +25,11 @@ const getRandomWallet = () => {
|
||||||
* @returns {boolean}
|
* @returns {boolean}
|
||||||
*/
|
*/
|
||||||
const isValidVanityWallet = (wallet, input, isChecksum) => {
|
const isValidVanityWallet = (wallet, input, isChecksum) => {
|
||||||
if (input !== wallet.address.substr(2, input.length)) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
if (!isChecksum) {
|
if (!isChecksum) {
|
||||||
return true;
|
return input === wallet.address.substr(2, input.length);
|
||||||
|
}
|
||||||
|
if (input.toLowerCase() !== wallet.address.substr(2, input.length)) {
|
||||||
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
const address = wallet.address.substr(2);
|
const address = wallet.address.substr(2);
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
</p>
|
</p>
|
||||||
<h2>Usage</h2>
|
<h2>Usage</h2>
|
||||||
<p>
|
<p>
|
||||||
Enter the prefix of your choice below, then click 'generate' to start. You browser is going to generate a
|
Enter the prefix of your choice below, then click 'generate' to start. Your browser is going to generate a
|
||||||
ton of random addresses until one of them starts with your prefix.<br>
|
ton of random addresses until one of them starts with your prefix.<br>
|
||||||
Once an address is found, you can reveal the private key, or click the 'save' button to download
|
Once an address is found, you can reveal the private key, or click the 'save' button to download
|
||||||
a password-encrypted keystore file.<br>
|
a password-encrypted keystore file.<br>
|
||||||
|
|
Loading…
Add table
Reference in a new issue