/algorand-vanity

Find vanity address for Algorand accounts. Fast!

Primary LanguageGo

algorand-vanity

Inspired by https://algovanity.com, this is a local/offline only option written in Go, and a lot faster. On my 2019 MacBook Pro I get about ~300k addresses per second.

Install

Option 1, clone and build yourself

git clone git@github.com:smonn/algorand-vanity.git
cd algorand-vanity
go get
go build

Option 2, go install

This assumes you have your ~/go/bin folder in your PATH.

go install github.com/smonn/algorand-vanity@latest

Option 3, download latest release

Visit the releases page and download the latest release for your platform.

Usage

algorand-vanity '^ABC[2-7]'

The first param should be a regular expression. Remember that an Algorand address is a base32 string matching ^[A-Z2-7]{58}$. So any pattern that's a subset of that should work.

I'm a beginner with Go so I'm sure this could be improved a lot further. Happy hunting!