💎 Browser-based ETH vanity address generator
Find a file
2018-02-13 08:24:59 +01:00
src Fix favicon issues 2018-02-13 08:24:59 +01:00
.babelrc Use webpack instead of gulp + browserify 2018-01-27 12:25:32 +01:00
.gitignore Use webpack instead of gulp + browserify 2018-01-27 12:25:32 +01:00
.travis.yml Update travis build job 2018-01-27 12:36:17 +01:00
index.html Fix favicon issues 2018-02-13 08:24:59 +01:00
LICENSE Initial commit 2017-12-21 08:13:10 +01:00
package-lock.json Display address identicon in result 2018-02-09 15:18:16 +01:00
package.json Display address identicon in result 2018-02-09 15:18:16 +01:00
README.md Improve README 2018-02-09 15:29:12 +01:00
webpack.config.js Fix favicon issues 2018-02-13 08:24:59 +01:00

Vanity-ETH

Build Status Maintainability

Browser-based ETH vanity address generator

Just type git.io/veth to use it

Usage

First of all, visit git.io/veth

Enter the prefix of your choice, then click 'generate' to start.

Ethereum addresses are hexadecimal, which means your prefix can only contain numbers and letters from A to F.

You can increase the number of threads allocated to address generation to be faster, or decrease it if you computer struggles.

How it works

You browser is going to generate a ton of random addresses until one of them starts with your prefix.

Everything is computed by your browser, so you should notice a better speed on a powerful computer.

Security

As explained above, everything is computed in your browser. Nothing ever leaves your machine, or even your browser tab.

You can download the latest build of Vantiy-ETH from Github and use it completely offline.

Vanity-ETH uses a cryptographically secure pseudorandom number generator (CSPRNG) to generate Ethereum addresses.

Offline usage

Vanity-ETH works perfectly offline! Once the web page is loaded, you can turn off the internet and continue playing.

You can also download the latest build of Vanity-ETH, check out the wiki page

Local development

Install dependencies

npm i

Run the dev-sever while you code

npm run dev

Build the project

npm run build

The Travis CI bot is in charge of building and deploying Vanity-ETH to Github pages.