@metamask-previews/keyring-controller 25.0.0-preview-cb4a07d5 → 25.0.0-preview-565dfca2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -57,9 +57,6 @@ const name = 'KeyringController';
|
|
|
57
57
|
*/
|
|
58
58
|
var KeyringTypes;
|
|
59
59
|
(function (KeyringTypes) {
|
|
60
|
-
// Changing this would be a breaking change, and not worth the effort at this
|
|
61
|
-
// time, so we disable the linting rule for this block.
|
|
62
|
-
/* eslint-disable @typescript-eslint/naming-convention */
|
|
63
60
|
KeyringTypes["simple"] = "Simple Key Pair";
|
|
64
61
|
KeyringTypes["hd"] = "HD Key Tree";
|
|
65
62
|
KeyringTypes["qr"] = "QR Hardware Wallet Device";
|
|
@@ -68,7 +65,6 @@ var KeyringTypes;
|
|
|
68
65
|
KeyringTypes["ledger"] = "Ledger Hardware";
|
|
69
66
|
KeyringTypes["lattice"] = "Lattice Hardware";
|
|
70
67
|
KeyringTypes["snap"] = "Snap Keyring";
|
|
71
|
-
/* eslint-enable @typescript-eslint/naming-convention */
|
|
72
68
|
})(KeyringTypes || (exports.KeyringTypes = KeyringTypes = {}));
|
|
73
69
|
/**
|
|
74
70
|
* Custody keyring types are a special case, as they are not a single type
|
|
@@ -86,12 +82,8 @@ exports.isCustodyKeyring = isCustodyKeyring;
|
|
|
86
82
|
*/
|
|
87
83
|
var AccountImportStrategy;
|
|
88
84
|
(function (AccountImportStrategy) {
|
|
89
|
-
// Changing this would be a breaking change, and not worth the effort at this
|
|
90
|
-
// time, so we disable the linting rule for this block.
|
|
91
|
-
/* eslint-disable @typescript-eslint/naming-convention */
|
|
92
85
|
AccountImportStrategy["privateKey"] = "privateKey";
|
|
93
86
|
AccountImportStrategy["json"] = "json";
|
|
94
|
-
/* eslint-enable @typescript-eslint/naming-convention */
|
|
95
87
|
})(AccountImportStrategy || (exports.AccountImportStrategy = AccountImportStrategy = {}));
|
|
96
88
|
/**
|
|
97
89
|
* The `signTypedMessage` version
|