eth-vanity

Crates.ioeth-vanity
lib.rseth-vanity
version0.1.2
created_at2025-12-30 16:19:58.584062+00
updated_at2026-01-09 15:33:16.841345+00
descriptionFast Ethereum vanity address miner. Supports wallet addresses, CREATE, and CREATE2.
homepage
repositoryhttps://github.com/zemse/eth-vanity
max_upload_size
id2012974
size86,807
soham (zemse)

documentation

README

eth-vanity

Fast Ethereum vanity address miner. Supports wallet addresses, CREATE, and CREATE2.

Install

cargo build --release

Usage

# wallet starting with 0xdead
eth-vanity address 0xdead

# enforce EIP-55 case
eth-vanity address 0xDaD --case

# start + end pattern
eth-vanity create 0xdead...beef

# generate salt for deterministic deployment
eth-vanity create2 0xAaAa path/to/artifact.json
eth-vanity create2 path/to/artifact.json 0xAbc --case

Patterns

  • 0xabc - match start
  • ...def - match end
  • 0xabc...def - match both
  • 0xa_c - underscore is wildcard
  • --case - enforce EIP-55 capitalization

CREATE2

Mines a salt for deterministic deployment proxy (0x4e59b44847b379578588920cA78FbF26c0B4956C).

eth-vanity create2 out/MyContract.sol/MyContract.json 0x000

Override deployer with --deployer <address>.


Generated by Claude, reviewed by Gemini

Commit count: 6

cargo fmt