An Ethereum vanity address generator.
First, install Rust (using the recommended rustup
installation method) and then
bash
cargo install styleth
git clone https://github.com/azorng/styleth.git
cd styleth
cargo build --release
. The binary can then be found at ./target/release/styleth
or ./target/release/styleth.exe
on Windows machines.``` styleth 0.1.4
USAGE: styleth [FLAGS] [OPTIONS]
FLAGS: -h, --help Prints help information -n, --numbers-only Matches on random numbers. Example: ./styleth --random-numbers -V, --version Prints version information
OPTIONS:
-l, --leading
```shell
$ cargo build
$ cargo run -- --help ```
Note: Cargo run
creates an unoptimized executable with debug info. When testing
the speed/throughput of the application, make sure to use cargo run --release
.