#vanity #address #ethereum #cryptocurrency #eth

app styleth

Ethereum虚荣地址生成器

1 个不稳定版本

0.1.4 2022年8月10日

#14 in #vanity

MIT 许可证

14KB
269

styleth

一个以太坊虚荣地址生成器。

安装

Cargo

首先,安装 Rust(使用推荐的 rustup 安装方法),然后

cargo install styleth

自行编译

  1. 通过 Rustup.rs 安装 Rust Rust
  2. 克隆此仓库: git clone https://github.com/azorng/styleth.git
  3. 移动到项目目录: cd styleth
  4. 编译项目: cargo build --release。二进制文件可以在 ./target/release/styleth 或 Windows 机器上的 ./target/release/styleth.exe 中找到。

命令行界面(CLI)

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 <hex char>                 Takes a single char as input and performs an incremental matching.
                                             Example: ./styleth --leading 0
    -s, --starts-with <hex text>             Matches on addresses that starts with given chars.
                                             Example: ./styleth --starts-with dead69
    -r, --regex <regex>                      Matches on a given regex pattern.
                                             Example: ./styleth --regex "^dead.*0dead$"
    -c, --specific-chars <specific-chars>    Matches on specific hex chars without any particular order.
                                             Example: ./styleth --specific-chars abc123

开发

# Build
$ cargo build

# Help
$ cargo run -- --help

注意: Cargo run 创建了一个未优化的包含调试信息的可执行文件。在测试应用程序的速度/吞吐量时,请确保使用 cargo run --release

依赖项

~8–18MB
~213K SLoC