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

interface BIP44ParamsAmino {
    account?: number;
    address_index?: number;
    change?: boolean;
    coin_type?: number;
    purpose?: number;
}

Properties

account?: number

account splits the key space into independent user identities

address_index?: 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.

coin_type?: number

coin_type is a constant that improves privacy

purpose?: number

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