Skip to content

Vanity 1.5.1

Latest
Compare
Choose a tag to compare
@deleterium deleterium released this 17 Jan 18:20

Changelog 1.4 -> 1.5.1

  • Program outputs now the Reed-Solomon Extended Address for use in activation.
  • Public key saved in database.csv, if using option --append-db.
  • Fixed bug, now a secondary GPU can be used.
  • 1.5 -> 1.5.1 Removed warnings to errors during CL compilation.

Binary package usage

Linux

  • Extract package contents
  • Test if it is running on cpu: ./vanity --cpu A?A
  • Play with command line options to maximize speed

Windows

  • Extract package contents
  • Open a command prompt
  • Go to the folder
  • Test it running on cpu: vanity --cpu A?A
  • Play with command line options to maximize speed

Mac

  • No binary available. Follow the compilation details at README.md (not tested on arm, only x86_64).

Help

Passphrase generator for vanity addresses on Signum cryptocurrency.

Usage: vanity [OPTION]... MASK
Example: vanity --cpu --pass-length 32 SGN@

Options:
  --help             Show this help statement
  --suffix           Match given mask from the end of address. Default is to match from the beginning
  --pass-length N    Passphrase length. Max 142 chars. Default: 64
  --cpu              Set to use CPU and disable using GPU
  --gpu              Set to use GPU. Already is default
  --gpu-platform N   Select GPU from platorm N. Default: 0
  --gpu-device N     Select GPU device N. Default: 0
  --gpu-threads N    Send a batch of N threads. Default: 16384
  --gpu-work-size N  Select N concurrent works. Default: Max available
  --endless          Never stop finding passphrases
  --use-charset ABC  Generate passphrase only containing the ABC chars
  --use-bip39        Generate passphrase with 12 words from BIP-39 list
  --dict [EN|PT|ES]  Dictionary language for bip-39. Default is english
  --add-salt ABC     Add your salt to the bip39 word list
  --append-db        Append (or create) database.csv with found results

Mask:
  Specify the rules for the desired address.
  It must be at least one char long.
  No 0, O, I or 1 are allowed.
  Following wildcars can be used:
    ?: Matches any char
    @: Matches only letters [A-Z]
    #: Matches only numbers [2-9]
    c: Matches consonants [BCDFGHJKLMNPQRSTVWXZ]
    v: Matches vowels [AEUY]
    p: Matches previous char
    -: Use to organize the mask, does not affect result