@metamask/keyring-internal-api
Version:
MetaMask Keyring Internal API
16 lines • 621 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.KeyringVersion = void 0;
var KeyringVersion;
(function (KeyringVersion) {
/** Default. */
KeyringVersion["V1"] = "v1";
/**
* Introduction of `KeyringRequest.origin`.
*
* Snap will now receive the `origin` as part of a `KeyringRequest` when `submitRequest` is invoked.
* We also expect Snaps to display this `origin` in their confirmation screens (if any).
*/
KeyringVersion["V2"] = "v2";
})(KeyringVersion || (exports.KeyringVersion = KeyringVersion = {}));
//# sourceMappingURL=versions.cjs.map