1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
//! <h1> Stellar Vanity </h1>
//!
//! This is a simple CLI tool for generating Stellar vanity addresses.
//!
//! **Vanity Address:** similar to a vanity license plate, a vanity cryptocurrency address is an
//! address where either the beginning (prefix) or end (postfix) is a special or meaningful phrase.
//! Generating such an address requires work. Below is the expected time and difficulty of finding
//! different length words in a vanity address (based on a more optimized algorthim/codebase).
//!
//! ![https://imgur.com/diotZ02.png](https://imgur.com/diotZ02.png)
//!
//!
//!
//! # Examples
//! ```
//! stellar_vanity AAA // Where AAA is the desired postfix
//! ```

extern crate base32;
extern crate byteorder;
extern crate bytes;
extern crate crc16;
extern crate ed25519_dalek;
extern crate rand;
extern crate rand_core;

pub mod vanity_key;