btcutil-js - v0.2.0
    Preparing search index...

    Interface Bip32DerivationInfo

    interface Bip32DerivationInfo {
        masterKeyFingerprint: string;
        path?: number[];
        pathStr?: string;
        pubKey: Bytes;
    }
    Index

    Properties

    masterKeyFingerprint: string

    Master key fingerprint as 8-char lowercase hex (e.g. "12345678").

    path?: number[]

    Numeric path (canonical).

    pathStr?: string

    Display path string (e.g. "m/84'/0'/0'/0/0"). On encode, used as a fallback if path is empty/absent. On decode, always populated.

    pubKey: Bytes