diff --git a/src/internal/types.ts b/src/internal/types.ts index 3b11e87aa..e3731aae6 100644 --- a/src/internal/types.ts +++ b/src/internal/types.ts @@ -1,4 +1,11 @@ -import { boolean, object, optional, string, type Infer } from 'superstruct'; +import { + boolean, + object, + optional, + string, + type Infer, + number, +} from 'superstruct'; import { KeyringAccountStruct } from '../api'; @@ -13,6 +20,7 @@ export const InternalAccountStruct = object({ }), ), name: string(), + lastActive: optional(number()), keyring: object({ type: string(), }),