From 976fec1ee925d066fe0535ec27b72e58befe4363 Mon Sep 17 00:00:00 2001
From: Boris Kubiak
Date: Sun, 18 Feb 2018 14:33:12 +0100
Subject: [PATCH] Fix uppercase input bug & typos
---
README.md | 9 +++++++--
src/js/vanity.js | 8 ++++----
src/vue/Description.vue | 2 +-
3 files changed, 12 insertions(+), 7 deletions(-)
diff --git a/README.md b/README.md
index 2386a8e..392d8dc 100644
--- a/README.md
+++ b/README.md
@@ -1,6 +1,7 @@
# 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)
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)
-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.
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.
+
+## Tips
+
+`0xAceBabe64807cb045505b268ef253D8fC2FeF5Bc`
\ No newline at end of file
diff --git a/src/js/vanity.js b/src/js/vanity.js
index 2e905a8..cf9adf3 100644
--- a/src/js/vanity.js
+++ b/src/js/vanity.js
@@ -25,11 +25,11 @@ const getRandomWallet = () => {
* @returns {boolean}
*/
const isValidVanityWallet = (wallet, input, isChecksum) => {
- if (input !== wallet.address.substr(2, input.length)) {
- return false;
- }
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);
diff --git a/src/vue/Description.vue b/src/vue/Description.vue
index 428b224..3e79f88 100644
--- a/src/vue/Description.vue
+++ b/src/vue/Description.vue
@@ -5,7 +5,7 @@
Usage
- 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.
Once an address is found, you can reveal the private key, or click the 'save' button to download
a password-encrypted keystore file.