Convert a sequence of derivation indices into the corresponding BIP32 derivation path.
Indices above the [hardening offset]* module:paths.HARDENING_OFFSET will be represented wiith hardened * path segments (using a trailing single-quote).
the derivation indices
BIP32 derivation path
import {bip32SequenceToPath} from "@caravan/bitcoin";console.log(bip32SequenceToPath([2147483693, 1, 99])); // m/45'/1/99 Copy
import {bip32SequenceToPath} from "@caravan/bitcoin";console.log(bip32SequenceToPath([2147483693, 1, 99])); // m/45'/1/99
Convert a sequence of derivation indices into the corresponding BIP32 derivation path.
Indices above the [hardening offset]* module:paths.HARDENING_OFFSET will be represented wiith hardened * path segments (using a trailing single-quote).