Skip to content

Commit

Permalink
Remove entries
Browse files Browse the repository at this point in the history
  • Loading branch information
aryzing committed Jan 27, 2025
1 parent 68aefac commit 05bb194
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/provider/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,12 @@ export type AccountChangeEvent = v.InferOutput<typeof accountChangeSchema>;
export const networkChangeEventName = 'networkChange';
export const networkChangeSchema = v.object({
type: v.literal(networkChangeEventName),
...getNetworkResultSchema.entries,
bitcoin: v.object({
name: v.string(),
}),
stacks: v.object({
name: v.string(),
}),
});
export type NetworkChangeEvent = v.InferOutput<typeof networkChangeSchema>;

Expand Down

0 comments on commit 05bb194

Please sign in to comment.