UNPKG

@ledgerhq/hw-app-aptos

Version:
15 lines 679 B
/** * @file bip32.ts * @description BIP32 Path Handling for Aptos Wallets * * This file provides utility functions to handle BIP32 paths, * which are commonly used in hierarchical deterministic (HD) wallets. * It includes functions to convert BIP32 paths to and from different formats, * extract components from extended public keys (xpubs), and manipulate path elements. */ /// <reference types="node" /> /// <reference types="node" /> export declare function pathElementsToBuffer(paths: number[]): Buffer; export declare function bip32asBuffer(path: string): Buffer; export declare function pathStringToArray(path: string): number[]; //# sourceMappingURL=bip32.d.ts.map