Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hukkin/cosmosvanity
CLI tool for generating Cosmos vanity addresses
https://github.com/hukkin/cosmosvanity
address bech32 blockchain cli cosmos cryptocurrency
Last synced: 12 days ago
JSON representation
CLI tool for generating Cosmos vanity addresses
- Host: GitHub
- URL: https://github.com/hukkin/cosmosvanity
- Owner: hukkin
- License: mit
- Created: 2019-12-28T00:14:13.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2023-06-18T15:03:50.000Z (over 1 year ago)
- Last Synced: 2024-04-21T01:02:16.404Z (7 months ago)
- Topics: address, bech32, blockchain, cli, cosmos, cryptocurrency
- Language: Go
- Homepage:
- Size: 109 KB
- Stars: 31
- Watchers: 3
- Forks: 16
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
- awesome-ccamel - hukkin/cosmosvanity - CLI tool for generating Cosmos vanity addresses (Go)
README
[![Build Status](https://github.com/hukkinj1/cosmosvanity/workflows/Tests/badge.svg?branch=master)](https://github.com/hukkinj1/cosmosvanity/actions?query=workflow%3ATests+branch%3Amaster+event%3Apush)
[![codecov.io](https://codecov.io/gh/hukkinj1/cosmosvanity/branch/master/graph/badge.svg)](https://codecov.io/gh/hukkinj1/cosmosvanity)
# cosmosvanity> Version 1.0.0
> CLI tool for generating [Cosmos](https://cosmos.network) vanity addresses
## Features
* Generate Cosmos bech32 vanity addresses
* Use all CPU cores
* Specify a substring that the addresses must
* start with
* end with
* contain
* Set required minimum amount of letters (a-z) or digits (0-9) in the addresses
* Binaries built for Linux, macOS and Windows## Installing
Download the latest binary release from the [_Releases_](https://github.com/hukkinj1/cosmosvanity/releases) page. Alternatively, build from source yourself.## Usage examples
Find an address that starts with "00000" (e.g. cosmos100000v3fpv4qg2a9ea6sj70gykxpt63wgjen2p)
```bash
./cosmosvanity --startswith 00000
```Find an address that ends with "8888" (e.g. cosmos134dck5uddzjure8pyprmmqat96k3jlypn28888)
```bash
./cosmosvanity --endswith 8888
```Find an address containing the substring "gener" (e.g. cosmos1z39wgener7azgh22s5a3pyswtnjkx2w0hvn3rv)
```bash
./cosmosvanity --contains gener
```Find an address consisting of letters only (e.g. cosmos1rfqkejeaxlxwtjxucnrathlzgnvgcgldzmuxxe)
```bash
./cosmosvanity --letters 38
```Find an address with at least 26 digits (e.g. cosmos1r573c4086585u084926726x535y3k2ktxpr88l)
```bash
./cosmosvanity --digits 26
```Generate 5 addresses (the default is 1)
```bash
./cosmosvanity -n 5
```Restrict to using only 1 CPU thread. This value defaults to the number of CPUs available.
```bash
./cosmosvanity --cpus 1
```Combine flags introduced above
```bash
./cosmosvanity --contains 8888 --startswith a --endswith c
```