parseDerivationPath
function parseDerivationPath(path: string): DerivationPathComponents;
Defined in: packages/iso-filecoin/src/utils.js:167
Parse a derivation path into its components
Parameters
Parameter | Type | Description |
---|---|---|
path | string | The derivation path to parse |
Returns
An object containing the derivation path components
See
https://github.com/bitcoin/bips/blob/master/bip-0044.mediawiki#path-levels
Example
import { function parseDerivationPath(path: string): import("/opt/buildhome/repo/packages/iso-filecoin/dist/src/types").DerivationPathComponents
Parse a derivation path into its components
parseDerivationPath } from 'iso-filecoin/utils'
const const components: DerivationPathComponents
components = function parseDerivationPath(path: string): import("/opt/buildhome/repo/packages/iso-filecoin/dist/src/types").DerivationPathComponents
Parse a derivation path into its components
parseDerivationPath("m/44'/461'/0'/0/0")// {// purpose: 44,// coinType: 461,// account: 0,// change: 0,// addressIndex: 0// }