[#ParseHDKeypath] = ParseHDKeypath :mrdocs: Parse an HD keypaths like "m/7/0'/2000". == Synopsis Declared in `<util/bip32.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- [[nodiscard]] bool ParseHDKeypath( std::string const& keypath_str, std::vector<uint32_t>& keypath); ---- == Return Value true if the key path was parsed successfully. [NOTE] ==== The return value https://en.cppreference.com/cpp/language/attributes/nodiscard[should not be discarded^]. ==== == Parameters [cols="1,4"] |=== | Name| Description | *keypath_str* | The textual key path to parse. | *keypath* | Output vector filled with the parsed derivation indices. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#