We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
setSelectedAccount
1 parent 0a893d7 commit 3746679Copy full SHA for 3746679
packages/keyring-snap-bridge/src/options.ts
@@ -16,6 +16,12 @@ export type SnapKeyringInternalOptions = {
16
* unique.
17
*/
18
displayAccountNameSuggestion?: boolean;
19
+
20
+ /**
21
+ * Instructs MetaMask to not select the account at the end of a create account
22
+ * flow.
23
+ */
24
+ setSelectedAccount?: boolean;
25
};
26
27
/**
@@ -27,5 +33,6 @@ export function getDefaultInternalOptions(): Required<SnapKeyringInternalOptions
33
return {
28
34
displayAccountNameSuggestion: true,
29
35
displayConfirmation: true,
36
+ setSelectedAccount: true,
30
37
31
38
}
0 commit comments