Skip to content

ntminh611/nice-wallet

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 

Repository files navigation

🔐 Nice Wallet Generator

Go Version License PRs Welcome

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! 🎯

...


✨ Features

  • 🎯 Generate wallets with custom patterns
  • 🚀 High-performance Go implementation
  • 💾 Auto-save results to file
  • 🔄 Cross-platform compatibility
  • 🔒 Secure key generation

🎯 Pattern Examples

The pattern matching system uses the following symbols:

Symbol Meaning
* Any sequence of characters
x Single character

📝 Example Patterns

*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"

🚀 Prerequisites

Install Go

🪟 Windows
  1. Download Go installer from official Go website
  2. Run the installer (e.g., go1.21.windows-amd64.msi)
  3. Add Go to your PATH environment variable
  4. Verify installation:
go version
🍎 macOS

Using Homebrew:

brew install go
🐧 Linux (Ubuntu/Debian)
sudo apt update
sudo apt install golang-go

📥 Installation

  1. Clone the repository:
git clone https://github.com/ntminh611/nice-wallet
cd nice-wallet
  1. Install dependencies:
go mod download

⚙️ Configuration

Create or modify structs.txt file with your desired patterns:

*999
0x1xxx
*0000

🛠️ Build

Build for current platform

go build -o nice-wallet

🌍 Cross-platform builds

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

🚀 Usage

  1. Run the executable:
# Windows
nice-wallet.exe

# macOS/Linux
./nice-wallet
  1. The program will generate wallets until it finds matches for all patterns
  2. Results are saved in results.txt

🔐 Security Notice

Warning

Keep your private keys safe! Never share them with anyone. Generated wallets are real cryptocurrency wallets.

🤝 Contributing

Contributions are welcome! Feel free to submit issues and pull requests.

📄 License

MIT License © ntminh611

About

Generate the wallet have nice seri(evm)

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages