@yoroi/types
Version:
The Yoroi Types package of Yoroi SDK
23 lines (21 loc) • 537 B
Flow
/**
* Flowtype definitions for meta
* Generated by Flowgen from a Typescript Definition
* Flowgen v1.21.0
*/
import { HWDeviceInfo } from "../hw/hw";
import { WalletAddressMode, WalletImplementation } from "./wallet";
export type WalletMeta = {
+version: number,
+id: string,
+plate: string,
name: string,
avatar: string,
+implementation: WalletImplementation,
addressMode: WalletAddressMode,
isReadOnly: boolean,
hwDeviceInfo: HWDeviceInfo | null,
+isHW: boolean,
isEasyConfirmationEnabled: boolean,
...
};