github.com/Finschia/finschia-sdk@v0.48.1/crypto/hd/doc.go (about) 1 // Package hd provides support for hierarchical deterministic wallets generation and derivation. 2 // 3 // The user must understand the overall concept of the BIP 32 and the BIP 44 specs: 4 // 5 // https://github.com/bitcoin/bips/blob/master/bip-0044.mediawiki 6 // https://github.com/bitcoin/bips/blob/master/bip-0032.mediawiki 7 // 8 // In combination with the bip39 package in go-crypto this package provides the functionality for 9 // deriving keys using a BIP 44 HD path, or, more general, by passing a BIP 32 path. 10 // 11 // In particular, this package (together with bip39) provides all necessary functionality to derive 12 // keys from mnemonics generated during the cosmos fundraiser. 13 package hd