5#ifndef BITCOIN_UTIL_BIP32_H
6#define BITCOIN_UTIL_BIP32_H
13[[nodiscard]]
bool ParseHDKeypath(
const std::string& keypath_str, std::vector<uint32_t>& keypath);
16std::string
WriteHDKeypath(
const std::vector<uint32_t>& keypath,
bool apostrophe =
false);
17std::string
FormatHDKeypath(
const std::vector<uint32_t>& path,
bool apostrophe =
false);
bool ParseHDKeypath(const std::string &keypath_str, std::vector< uint32_t > &keypath)
Parse an HD keypaths like "m/7/0'/2000".
std::string WriteHDKeypath(const std::vector< uint32_t > &keypath, bool apostrophe=false)
Write HD keypaths as strings.
std::string FormatHDKeypath(const std::vector< uint32_t > &path, bool apostrophe=false)