Skip to content

gskapka/ethereum-vanity-address-generator

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

51 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

:trollface: Ethereum Vanity Address Generator

A simple CLI for creating vanity ethereum addresses (I.E. Those that begin with a desired hex string). You can also create random addresses too.

 


 

📃 Usage:

1) Clone the repo:

❍ git clone https://github.com/gskapka/ethereum-vanity-address-generator.git

2) Enter app dir and build it:

❍ cd ethereum-vanity-address-generator && cargo b -r

3) You'll find the __ethereum-vanity-address-generator__binary in:

❍ cd ./target/release

4) To use the binary itself see the following:


❍ Ethereum Vanity Address Generator ❍

    Copyright: Greg Kapka 2020
    Questions: greg@kapka.co.uk

❍ Info ❍

A simple CLI for creating vanity ethereum addresses (I.E. Those that begin with a desired hex
string). You can also create random addresses too!

❍ Usage ❍

Usage:  ethereum-vanity-address-generator [--help]
        ethereum-vanity-address-generator version
        ethereum-vanity-address-generator generateRandomAddress [--logLevel=<string>]
        ethereum-vanity-address-generator generateVanityAddress <prefix> [--logLevel=<string>]

Commands:

        version                ❍ Show version info.
        generateRandomAddress  ❍ Generate a random ethereum address.
        generateVanityAddress  ❍ Generate a vanity etheruem address that starts with the provided
                                 hex prefix.
        <prefix>               ❍ Valid hex you want as a prefix for your vanity ethereum address.

Options:

        --help                 ❍ Show this message.
        --logLevel=<level>     ❍ Define the level of logging in the tool's output as one of:
                                 `none`, `info`, `debug`, `trace` or `error`. [default: none]