go bip39:Go的BIP39库 源码
例 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
用户评论