@bitcoinerlab/descriptors - v3.0.5
    Preparing search index...

    Type Alias LedgerState

    Ledger devices operate in a state-less manner. Therefore, policy information needs to be maintained in a separate data structure, ledgerState. For optimization, ledgerState also stores cached xpubs and the masterFingerprint.

    type LedgerState = {
        masterFingerprint?: Uint8Array;
        policies?: LedgerPolicy[];
        xpubs?: { [key: string]: string };
    }
    Index

    Properties

    masterFingerprint?: Uint8Array
    policies?: LedgerPolicy[]
    xpubs?: { [key: string]: string }