BIP44Params is used as path field in ledger item in Record.

interface BIP44Params {
    account: number;
    addressIndex: number;
    change: boolean;
    coinType: number;
    purpose: number;
}

Properties

account: number

account splits the key space into independent user identities

addressIndex: number

address_index is used as child index in BIP32 derivation

change: boolean

change is a constant used for public derivation. Constant 0 is used for external chain and constant 1 for internal chain.

coinType: number

coin_type is a constant that improves privacy

purpose: number

purpose is a constant set to 44' (or 0x8000002C) following the BIP43 recommendation