Skip to content
This repository has been archived by the owner on Oct 7, 2024. It is now read-only.

Commit

Permalink
feat: add lastSelected optional field to metadata
Browse files Browse the repository at this point in the history
  • Loading branch information
montelaidev committed Aug 31, 2023
1 parent 7a63a46 commit a60396e
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion src/internal/types.ts
Original file line number Diff line number Diff line change
@@ -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';

Expand All @@ -13,6 +20,7 @@ export const InternalAccountStruct = object({
}),
),
name: string(),
lastActive: optional(number()),
keyring: object({
type: string(),
}),
Expand Down

0 comments on commit a60396e

Please sign in to comment.