We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 140693b commit 16b8c69Copy full SHA for 16b8c69
packages/accounts-controller/src/utils.ts
@@ -30,6 +30,9 @@ export function keyringTypeToName(keyringType: string): string {
30
case KeyringTypes.lattice: {
31
return 'Lattice';
32
}
33
+ case KeyringTypes.keystone: {
34
+ return 'Keystone';
35
+ }
36
case KeyringTypes.qr: {
37
return 'QR';
38
packages/keyring-controller/src/KeyringController.ts
@@ -60,6 +60,7 @@ export enum KeyringTypes {
60
oneKey = 'OneKey Hardware',
61
ledger = 'Ledger Hardware',
62
lattice = 'Lattice Hardware',
63
+ keystone = 'Keystone Hardware',
64
snap = 'Snap Keyring',
65
66
0 commit comments