UNPKG

@yoroi/types

Version:
16 lines 513 B
import { HWDeviceInfo } from '../hw/hw'; import { WalletAddressMode, WalletImplementation } from './wallet'; export type WalletMeta = { readonly version: number; readonly id: string; readonly plate: string; name: string; avatar: string; readonly implementation: WalletImplementation; addressMode: WalletAddressMode; isReadOnly: boolean; hwDeviceInfo: HWDeviceInfo | null; readonly isHW: boolean; isEasyConfirmationEnabled: boolean; }; //# sourceMappingURL=meta.d.ts.map