Documentation ¶
Overview ¶
Package hd provides basic functionality Hierarchical Deterministic Wallets.
The user must understand the overall concept of the BIP 32 and the BIP 44 specs:
https://github.com/bitcoin/bips/blob/master/bip-0044.mediawiki https://github.com/bitcoin/bips/blob/master/bip-0032.mediawiki
In combination with the bip39 package in go-crypto this package provides the functionality for deriving keys using a BIP 44 HD path, or, more general, by passing a BIP 32 path.
In particular, this package (together with bip39) provides all necessary functionality to derive keys from mnemonics generated during the cosmos fundraiser.
Index ¶
Constants ¶
const ( BIP44Prefix = "44'/118'/" FullFundraiserPath = BIP44Prefix + "0'/0/0" )
BIP44Prefix is the parts of the BIP32 HD path that are fixed by what we used during the fundraiser.
Variables ¶
This section is empty.
Functions ¶
func ComputeMastersFromSeed ¶
ComputeMastersFromSeed returns the master public key, master secret, and chain code in hex.
Types ¶
type BIP44Params ¶
type BIP44Params struct {
// contains filtered or unexported fields
}
BIP44Params wraps BIP 44 params (5 level BIP 32 path). To receive a canonical string representation ala m / purpose' / coin_type' / account' / change / address_index call String() on a BIP44Params instance.
func NewFundraiserParams ¶
func NewFundraiserParams(account uint32, addressIdx uint32) *BIP44Params
NewFundraiserParams creates a BIP 44 parameter object from the params: m / 44' / 118' / account' / 0 / address_index The fixed parameters (purpose', coin_type', and change) are determined by what was used in the fundraiser.
func NewParams ¶
func NewParams(purpose, coinType, account uint32, change bool, addressIdx uint32) *BIP44Params
NewParams creates a BIP 44 parameter object from the params: m / purpose' / coin_type' / account' / change / address_index
func (BIP44Params) String ¶
func (p BIP44Params) String() string