# Packages
Package base58 provides an API for working with modified base58 and Base58Check
encodings.
# Functions
DeserializeExtendedKey deserialized the given base58 string and returns an extended key.
GenerateSeed generates seed that can be used to initialize a master key.
NewMaster returns a new extended private key based on the given seed and version.
NewMasterWithPath returns a new master key based on the given seed and version, with a derivation to the given path.
NewPublicMasterWithPath returns a new public master key based on the given seed and version, with a derivation to the given path.
# Variables
BitcoinMainnetPrivate is the version that is used for bitcoin mainnet bip32 private extended keys.
BitcoinMainnetPublic is the version that is used for bitcoin mainnet bip32 public extended keys.
ConsensusDevnetPrivate is the version that is used for consensus devnet bip32 public extended keys.
ConsensusDevnetPublic is the version that is used for consensus devnet bip32 public extended keys.
ConsensusMainnetPrivate is the version that is used for consensus mainnet bip32 private extended keys.
ConsensusMainnetPublic is the version that is used for consensus mainnet bip32 public extended keys.
ConsensusSimnetPrivate is the version that is used for consensus simnet bip32 public extended keys.
ConsensusSimnetPublic is the version that is used for consensus simnet bip32 public extended keys.
ConsensusTestnetPrivate is the version that is used for consensus testnet bip32 public extended keys.
ConsensusTestnetPublic is the version that is used for consensus testnet bip32 public extended keys.
# Structs
ExtendedKey is a bip32 extended key.