@yoroi/types
Version:
The Yoroi Types package of Yoroi SDK
16 lines • 513 B
TypeScript
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