@metamask-previews/keyring-controller 25.2.0-preview-3f6f27f → 25.2.0-preview-b6a517f5e

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.
package/CHANGELOG.md CHANGED
@@ -7,10 +7,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
- ### Added
11
-
12
- - Add `accountSupports7702` method and `KeyringController:accountSupports7702` messenger action to check whether an account's keyring supports EIP-7702 authorization signing ([#8388](https://github.com/MetaMask/core/pull/8388))
13
-
14
10
  ### Changed
15
11
 
16
12
  - Bump `@metamask/messenger` from `^1.0.0` to `^1.1.1` ([#8364](https://github.com/MetaMask/core/pull/8364), [#8373](https://github.com/MetaMask/core/pull/8373))
@@ -1022,11 +1022,6 @@ class KeyringController extends base_controller_1.BaseController {
1022
1022
  const keyring = (await this.getKeyringForAccount(account));
1023
1023
  return keyring.type;
1024
1024
  }
1025
- async accountSupports7702(account) {
1026
- const keyringType = await this.getAccountKeyringType(account);
1027
- return (keyringType === KeyringTypes.hd ||
1028
- keyringType === KeyringTypes.simple);
1029
- }
1030
1025
  }
1031
1026
  exports.KeyringController = KeyringController;
1032
1027
  _KeyringController_controllerOperationMutex = new WeakMap(), _KeyringController_vaultOperationMutex = new WeakMap(), _KeyringController_keyringBuilders = new WeakMap(), _KeyringController_encryptor = new WeakMap(), _KeyringController_keyrings = new WeakMap(), _KeyringController_unsupportedKeyrings = new WeakMap(), _KeyringController_encryptionKey = new WeakMap(), _KeyringController_instances = new WeakSet(), _KeyringController_getKeyringForAccount = async function _KeyringController_getKeyringForAccount(account) {
@@ -1071,7 +1066,6 @@ _KeyringController_controllerOperationMutex = new WeakMap(), _KeyringController_
1071
1066
  this.messenger.registerActionHandler(`${name}:createNewVaultAndKeychain`, this.createNewVaultAndKeychain.bind(this));
1072
1067
  this.messenger.registerActionHandler(`${name}:createNewVaultAndRestore`, this.createNewVaultAndRestore.bind(this));
1073
1068
  this.messenger.registerActionHandler(`${name}:removeAccount`, this.removeAccount.bind(this));
1074
- this.messenger.registerActionHandler(`${name}:accountSupports7702`, this.accountSupports7702.bind(this));
1075
1069
  }, _KeyringController_selectKeyring =
1076
1070
  /**
1077
1071
  * Select a keyring using a selector without acquiring the controller lock.