Generate vanity wallets with beautiful custom address patterns for all EVM-compatible blockchains - Create wallets ending with 888, 999, 000 or any pattern you want! 🎯
- 🎯 Generate wallets with custom patterns
- 🚀 High-performance Go implementation
- 💾 Auto-save results to file
- 🔄 Cross-platform compatibility
- 🔒 Secure key generation
The pattern matching system uses the following symbols:
Symbol | Meaning |
---|---|
* |
Any sequence of characters |
x |
Single character |
*999 # Address ending with "999"
0x1xxx # Address starting with "0x1" followed by any 3 characters
*123*456 # Address containing "123" followed by "456"
*0000 # Address ending with "0000"
*abc*def # Address containing "abc" followed by "def"
0xabc* # Address starting with "0xabc"
*dead # Address ending with "deed"
*1111*2222 # Address containing "1111" followed by "2222"
🪟 Windows
- Download Go installer from official Go website
- Run the installer (e.g.,
go1.21.windows-amd64.msi
) - Add Go to your PATH environment variable
- Verify installation:
go version
🍎 macOS
Using Homebrew:
brew install go
🐧 Linux (Ubuntu/Debian)
sudo apt update
sudo apt install golang-go
- Clone the repository:
git clone https://github.com/ntminh611/nice-wallet
cd nice-wallet
- Install dependencies:
go mod download
Create or modify structs.txt
file with your desired patterns:
*999
0x1xxx
*0000
go build -o nice-wallet
Build for Windows 🪟
GOOS=windows GOARCH=amd64 go build -o nice-wallet.exe
Build for macOS 🍎
GOOS=darwin GOARCH=amd64 go build -o nice-wallet-mac
Build for Linux 🐧
GOOS=linux GOARCH=amd64 go build -o nice-wallet-linux
- Run the executable:
# Windows
nice-wallet.exe
# macOS/Linux
./nice-wallet
- The program will generate wallets until it finds matches for all patterns
- Results are saved in
results.txt
Warning
Keep your private keys safe! Never share them with anyone. Generated wallets are real cryptocurrency wallets.
Contributions are welcome! Feel free to submit issues and pull requests.
MIT License © ntminh611