https://github.com/MyEtherWallet/VanityEth
Ethereum vanity address generator
https://github.com/MyEtherWallet/VanityEth
checksum ethereum-address etheruem vanity-address
Last synced: over 1 year ago
JSON representation
Ethereum vanity address generator
- Host: GitHub
- URL: https://github.com/MyEtherWallet/VanityEth
- Owner: MyEtherWallet
- License: mit
- Created: 2017-03-09T05:25:57.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2023-06-03T10:07:59.000Z (about 3 years ago)
- Last Synced: 2024-10-02T16:38:33.516Z (almost 2 years ago)
- Topics: checksum, ethereum-address, etheruem, vanity-address
- Language: JavaScript
- Size: 34.2 KB
- Stars: 556
- Watchers: 33
- Forks: 168
- Open Issues: 21
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Vanity Eth
Nodejs based tool to generate vanity ethereum addresses
# Features!
- Generate multiple addresses
- Supports Multi-core processors
- vanity contract address
- log to file
- checksum based vanity address
### Installation
```sh
$ npm install -g vanity-eth
$ vanityeth -i deadbeef
```
### Examples
Generate ethereum address:
```sh
$ vanityeth
```
generate 10 ethereum addresses:
```sh
$ vanityeth -n 10
```
generate 10 ethereum addresses with deadbeef as starting characters:
```sh
$ vanityeth -n 10 -i deadbeef
```
generate 10 ethereum addresses with DEADBEEF as the checksum address (case sensitive):
```sh
$ vanityeth -n 10 -i DEADBEEF -c
```
generate ethereum address with vanity contract address:
```sh
$ vanityeth -i deadbeef --contract
```
log to file
```sh
$ vanityeth -n 10 -l
```
help me
```sh
$ vanityeth -h
```
### Docker usage
Get the image
```sh
# Build image locally after cloning repository
$ docker build -t vanityeth .
# or download image
docker pull myetherwallet/vanityeth
```
Usage
```
$ docker run -it vanityeth
# Pass additional arguments
$ docker run -it myetherwallet/vanityeth -i deadbeef
```
### Running Locally
To run from source:
```sh
git clone git@github.com:MyEtherWallet/VanityEth.git
cd VanityEth
npm install
./index.js
```
License
----
MIT