Skip to content

Windows (WPF) application to find vanity bitcoin addresses. Uses NBitcoin.

License

Notifications You must be signed in to change notification settings

iainholder/BitcoinVanityAddressFinder

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

82 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

BitcoinVanityAddressFinder

Windows (WPF) application to find vanity bitcoin addresses using NBitcoin.

Build

Clone in and build using Visual Studio. Community Edition is free.

https://visualstudio.microsoft.com/vs/community/

Why

Vanity addresses are valid bitcoin addresses that contain human-readable messages. For example, 1LoveBPzzD72PUXLzCkYAtGFYmK5vYNR33 is a valid address that contains the letters forming the word "Love" as the first four Base-58 letters. Vanity addresses require generating and testing billions of candidate private keys, until a bitcoin address with the desired pattern is found. Although there are some optimizations in the vanity generation algorithm, the process essentially involves picking a private key at random, deriving the public key, deriving the bitcoin address, and checking to see if it matches the desired vanity pattern, repeating billions of times until a match is found.

-- Andreas M. Antonopolous, Mastering Bitcoin, O'Reilly

[Open source version: https://github.com/bitcoinbook/bitcoinbook/blob/develop/ch04.asciidoc]

Features

  • Search for addresses containing strings of up to 8 characters. Each letter makes the search exponentially harder.
  • Search for random English words from a dictionary of 58k+.
  • Case sensitivity.
  • Addresses starting with a given string. Note the first character of a bitcoin address has meaning so after that character.
  • Address ending with a given string.
  • Multithreaded search up to the number of cores in your machine. Defaults to N-1.
  • Multiple networks, currently Main, TestNet and RegTest

Based On

** Use at your own risk. Main address are valid and you're playing with real money.**

About

Windows (WPF) application to find vanity bitcoin addresses. Uses NBitcoin.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages