package main
import (
"fmt"
"github.com/tyler-smith/go-bip39"
"github.com/tyler-smith/go-bip32"
)
func main(){
// Generate a mnemonic for memorization or user-friendly seeds
entropy, _ := bip39.NewEntropy(256)
mnemonic, _ := bip39.NewMnemonic(entropy)
// Generate a Bip32 HD wallet for the mnemonic and a user supplied password
seed := bip39.NewSeed(mnemonic, "Secret Passphrase")
masterKey, _ := bip32.NewMasterKey(seed)
publicKey := masterKey.PublicKey()
// Display mnemonic and keys
fmt.Println("Mnemonic: ", mnemonic)
fmt.Println("Master private key: ", masterKey)
fmt.Println("Master public key: ", publicKey)
}
forked from tyler-smith/go-bip39
-
Notifications
You must be signed in to change notification settings - Fork 0
The BIP39 library for Go. (With support of multiple languages)
License
zhuqicn/go-bip39
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
About
The BIP39 library for Go. (With support of multiple languages)
Resources
License
Stars
Watchers
Forks
Packages 0
No packages published
Languages
- Go 99.7%
- Makefile 0.3%