import { BinaryReader, BinaryWriter } from '../../../../binary.js'; import { type JsonSafe } from '../../../../json-safe.js'; /** BIP44Params is used as path field in ledger item in Record. */ export interface BIP44Params { /** purpose is a constant set to 44' (or 0x8000002C) following the BIP43 recommendation */ purpose: number; /** coin_type is a constant that improves privacy */ coinType: number; /** account splits the key space into independent user identities */ account: number; /** * change is a constant used for public derivation. Constant 0 is used for external chain and constant 1 for internal * chain. */ change: boolean; /** address_index is used as child index in BIP32 derivation */ addressIndex: number; } export interface BIP44ParamsProtoMsg { typeUrl: '/cosmos.crypto.hd.v1.BIP44Params'; value: Uint8Array; } /** BIP44Params is used as path field in ledger item in Record. */ export interface BIP44ParamsSDKType { purpose: number; coin_type: number; account: number; change: boolean; address_index: number; } export declare const BIP44Params: { typeUrl: "/cosmos.crypto.hd.v1.BIP44Params"; encode(message: BIP44Params, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): BIP44Params; fromJSON(object: any): BIP44Params; toJSON(message: BIP44Params): JsonSafe; fromPartial(object: Partial): BIP44Params; fromProtoMsg(message: BIP44ParamsProtoMsg): BIP44Params; toProto(message: BIP44Params): Uint8Array; toProtoMsg(message: BIP44Params): BIP44ParamsProtoMsg; }; //# sourceMappingURL=hd.d.ts.map