Ecosyste.ms: Issues
An open API service for providing issue and pull request metadata for open source projects.
GitHub / MarinX/btc-vanity issues and pull requests
#5 - package main import ( "fmt" "github.com/MarinX/btc-vanity" ) func main() { // create configuration cfg := &btcvanity.Config{ // buffered channel, more buffer, faster to find matching pattern Buffer: 5, // if you want to use testnet, set true TestNet: false, } btc := btcvanity.New(cfg) // find a patters eg adddress which starts with "ab" address, err := btc.Find("ab") if err != nil { panic(err) } // print our custom public key fmt.Printf("PUBLIC KEY\n%s\n", address.PublicKey()) // print our private key so it can be imported in most btc wallets fmt.Printf("PRIVATE KEY\n%s\n", address.PrivateKey())
Issue -
State: open - Opened by Bond1313 about 1 year ago
#4 - Update matcher.go for suffix
Pull Request -
State: closed - Opened by fazilraja over 1 year ago
#3 - Segwit support
Issue -
State: closed - Opened by DeadNumbers over 4 years ago
- 1 comment
#2 - How to use?
Issue -
State: closed - Opened by secretnumber almost 5 years ago
- 2 comments
#1 - Fix example
Pull Request -
State: closed - Opened by montanaflynn over 5 years ago
- 1 comment