36 lines
1 KiB
Markdown
36 lines
1 KiB
Markdown
# Vanity ETH
|
|
|
|
[](https://travis-ci.org/bokub/vanity-eth)
|
|
[](https://codeclimate.com/github/bokub/vanity-eth/maintainability)
|
|
[](https://github.com/sindresorhus/xo)
|
|
|
|
Browser-based ETH vanity address generator
|
|
|
|
Just type [`git.io/veth`](https://git.io/veth) to use it ⚡️
|
|
|
|
## Local usage
|
|
|
|
If for any reason you don't want to use the version hosted by Github pages, download / clone the project and open `index.html` with your web browser.
|
|
|
|
⚠ For some reason, some browsers such as chrome disallow multi-thread computation when run from a local file.
|
|
|
|
## Local development
|
|
|
|
Install dependencies
|
|
|
|
```sh
|
|
npm i
|
|
npm i -g gulp
|
|
```
|
|
|
|
Run the watcher to compile while you code
|
|
|
|
```sh
|
|
gulp watch # or npm run-script watch
|
|
```
|
|
|
|
Build before pushing to production
|
|
|
|
```sh
|
|
gulp # or npm run-script build
|
|
```
|