Skip to content

parseDerivationPath

function parseDerivationPath(path: string): DerivationPathComponents;

Defined in: packages/iso-filecoin/src/utils.js:167

Parse a derivation path into its components

Parameters

ParameterTypeDescription
pathstringThe derivation path to parse

Returns

DerivationPathComponents

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

@seehttps://github.com/bitcoin/bips/blob/master/bip-0044.mediawiki#path-levels

@parampath - The derivation path to parse

@returnsAn object containing the derivation path components

@example

import { parseDerivationPath } from 'iso-filecoin/utils'
const components = parseDerivationPath("m/44'/461'/0'/0/0")
// {
// purpose: 44,
// coinType: 461,
// account: 0,
// change: 0,
// addressIndex: 0
// }

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

@seehttps://github.com/bitcoin/bips/blob/master/bip-0044.mediawiki#path-levels

@parampath - The derivation path to parse

@returnsAn object containing the derivation path components

@example

import { parseDerivationPath } from 'iso-filecoin/utils'
const components = parseDerivationPath("m/44'/461'/0'/0/0")
// {
// purpose: 44,
// coinType: 461,
// account: 0,
// change: 0,
// addressIndex: 0
// }

parseDerivationPath
("m/44'/461'/0'/0/0")
// {
// purpose: 44,
// coinType: 461,
// account: 0,
// change: 0,
// addressIndex: 0
// }