diff --git a/README.md b/README.md index 2386a8e..392d8dc 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,7 @@ # Vanity-ETH -[![Build Status](https://travis-ci.org/bokub/vanity-eth.svg?branch=master)](https://travis-ci.org/bokub/vanity-eth) +[![Build Status](https://img.shields.io/travis/bokub/vanity-eth/master.svg?style=flat-square)](https://travis-ci.org/bokub/vanity-eth) +[![License](https://img.shields.io/badge/license-MIT-f49068.svg?style=flat-square)](https://raw.githubusercontent.com/bokub/vanity-eth/master/LICENSE) [![Maintainability](https://api.codeclimate.com/v1/badges/818874f09ea56c310072/maintainability)](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.