@metamask-previews/transaction-controller 68.4.0-preview-1f6071cd8 → 69.0.0-preview-a511f243f

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,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [69.0.0]
11
+
12
+ ### Changed
13
+
14
+ - **BREAKING:** Expand saved gas fee support to allow transaction-scoped lookup, saved gas fee estimate levels, and legacy gas price values. Consumers that provide `getSavedGasFees` must now accept `TransactionMeta` instead of a chain ID. ([#8993](https://github.com/MetaMask/core/pull/8993))
15
+ - Bump `@metamask/accounts-controller` from `^39.0.4` to `^39.0.5` ([#9470](https://github.com/MetaMask/core/pull/9470))
16
+
10
17
  ## [68.4.0]
11
18
 
12
19
  ### Added
@@ -2577,7 +2584,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2577
2584
 
2578
2585
  All changes listed after this point were applied to this package following the monorepo conversion.
2579
2586
 
2580
- [Unreleased]: https://github.com/MetaMask/core/compare/@metamask/transaction-controller@68.4.0...HEAD
2587
+ [Unreleased]: https://github.com/MetaMask/core/compare/@metamask/transaction-controller@69.0.0...HEAD
2588
+ [69.0.0]: https://github.com/MetaMask/core/compare/@metamask/transaction-controller@68.4.0...@metamask/transaction-controller@69.0.0
2581
2589
  [68.4.0]: https://github.com/MetaMask/core/compare/@metamask/transaction-controller@68.3.0...@metamask/transaction-controller@68.4.0
2582
2590
  [68.3.0]: https://github.com/MetaMask/core/compare/@metamask/transaction-controller@68.2.2...@metamask/transaction-controller@68.3.0
2583
2591
  [68.2.2]: https://github.com/MetaMask/core/compare/@metamask/transaction-controller@68.2.1...@metamask/transaction-controller@68.2.2
package/LICENSE CHANGED
@@ -18,3 +18,4 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
18
  AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
19
  LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
20
  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -224,7 +224,8 @@ class TransactionController extends base_controller_1.BaseController {
224
224
  __classPrivateFieldSet(this, _TransactionController_beforeSign, hooks?.beforeSign ??
225
225
  (() => Promise.resolve({})), "f");
226
226
  __classPrivateFieldSet(this, _TransactionController_getPermittedAccounts, getPermittedAccounts, "f");
227
- __classPrivateFieldSet(this, _TransactionController_getSavedGasFees, getSavedGasFees ?? ((_chainId) => undefined), "f");
227
+ __classPrivateFieldSet(this, _TransactionController_getSavedGasFees, getSavedGasFees ??
228
+ ((_transactionMeta) => undefined), "f");
228
229
  __classPrivateFieldSet(this, _TransactionController_getSimulationConfig, getSimulationConfig ??
229
230
  (() => Promise.resolve({})), "f");
230
231
  __classPrivateFieldSet(this, _TransactionController_isAutomaticGasFeeUpdateEnabled, isAutomaticGasFeeUpdateEnabled ??
@@ -305,6 +306,18 @@ class TransactionController extends base_controller_1.BaseController {
305
306
  destroy() {
306
307
  __classPrivateFieldGet(this, _TransactionController_instances, "m", _TransactionController_stopAllTracking).call(this);
307
308
  }
309
+ /**
310
+ * @deprecated Incoming transaction support has been removed. This method is retained as a no-op for backwards compatibility.
311
+ */
312
+ startIncomingTransactionPolling() {
313
+ (0, lodash_1.noop)();
314
+ }
315
+ /**
316
+ * @deprecated Incoming transaction support has been removed. This method is retained as a no-op for backwards compatibility.
317
+ */
318
+ stopIncomingTransactionPolling() {
319
+ (0, lodash_1.noop)();
320
+ }
308
321
  /**
309
322
  * Handle new method data request.
310
323
  *