@yoroi/types
Version:
The Yoroi Types package of Yoroi SDK
16 lines • 381 B
TypeScript
export type HWDeviceInfo = {
bip44AccountPublic: string;
hwFeatures: HWFeatures;
};
export type HWFeatures = {
vendor: string;
model: string;
deviceId: string | null | undefined;
deviceObj: HWDeviceObj | null | undefined;
serialHex?: string;
};
export type HWDeviceObj = {
vendorId: number;
productId: number;
};
//# sourceMappingURL=hw.d.ts.map