Skip to content

CLI tool for generating Cosmos vanity addresses

License

Notifications You must be signed in to change notification settings

hukkin/cosmosvanity

Repository files navigation

Build Status codecov.io GolangCI

cosmosvanity

Version 0.0.2

Cosmos vanity address generator. Command line user interface.

Features

  • Generate Cosmos bech32 vanity addresses
  • Use all CPU cores
  • Specify a substring that the address must
    • start with (--startswith flag)
    • end with (--endswith flag)
    • contain (--contains flag)
  • Supports Linux, macOS and Windows

Installing

Download the latest binary release from the Releases page. Alternatively, build from source yourself.

Usage examples

Find an address that starts with "00000" (e.g. cosmos100000v3fpv4qg2a9ea6sj70gykxpt63wgjen2p)

./cosmosvanity --startswith 00000

Find an address that ends with "8888" (e.g. cosmos134dck5uddzjure8pyprmmqat96k3jlypn28888)

./cosmosvanity --endswith 8888

Find an address containing the substring "gener" (e.g. cosmos1z39wgener7azgh22s5a3pyswtnjkx2w0hvn3rv)

./cosmosvanity --contains gener

Combine flags shown above

./cosmosvanity --contains 8888 --startswith a --endswith c