GPU-accelerated Ergo vanity address generator. Find Ergo wallet addresses matching a custom prefix (e.g., 9ergo...).
Warning: Early development. Verify generated mnemonics with official Ergo wallet before using for significant funds.
Requirements
A GPU with up-to-date drivers (NVIDIA, AMD, or Intel). Drivers include OpenCL support needed to run this tool.
The Linux build also embeds an optional NVIDIA CUDA backend for sm_75+ GPUs (GTX 16xx, RTX 20/30/40/50 series). It is opt-in: set ERG_BACKEND=cuda, otherwise OpenCL is used.
Getting Started
Windows
- Download
erg-vanity-windows-x64.zipand extract it - Open PowerShell, navigate to the folder:
cd C:\path\to\extracted\folder - Run:
.\erg-vanity.exe 9err
macOS
- Download the
.tar.gzfor your Mac (arm64 = Apple Silicon, x64 = Intel) - Open Terminal:
tar -xzf erg-vanity-macos-*.tar.gz ./erg-vanity 9err - If blocked: System Settings → Privacy & Security → Allow
Linux
- Download
erg-vanity-linux-x64.tar.gz - Open terminal:
tar -xzf erg-vanity-linux-x64.tar.gz ./erg-vanity 9err
Examples
./erg-vanity 9err # Find address starting with "9err"
ERG_BACKEND=cuda ./erg-vanity 9err # NVIDIA CUDA backend (Linux build)
./erg-vanity -p 9ErGo -i # Case-insensitive
./erg-vanity -p 9err,9ego,9fun # Multiple patterns
./erg-vanity -p 9err -n 5 # Find 5 matches
./erg-vanity --list-devices # List GPUsWhen a match is found, save the 24-word mnemonic securely - it controls the wallet.
Full docs: https://github.com/arkadianet/erg-vanity-gpu#readme
What's Changed
- perf: larger default GPU batch for faster single-index searches by @arkadianet in #18
- Add optional CUDA backend compiling the same kernel sources via nvcc by @arkadianet in #27
Full Changelog: v0.3.0...v0.4.0