@bitcoinerlab/descriptors - v2.3.4
    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?: Buffer;
        policies?: LedgerPolicy[];
        xpubs?: { [key: string]: string };
    }
    Index

    Properties

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