@metamask-previews/transaction-controller 62.9.2-preview-839e62c2 → 62.10.0-preview-cd0d0950

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.
Files changed (44) hide show
  1. package/CHANGELOG.md +10 -1
  2. package/dist/TransactionController.cjs.map +1 -1
  3. package/dist/TransactionController.d.cts +3 -2
  4. package/dist/TransactionController.d.cts.map +1 -1
  5. package/dist/TransactionController.d.mts +3 -2
  6. package/dist/TransactionController.d.mts.map +1 -1
  7. package/dist/TransactionController.mjs.map +1 -1
  8. package/dist/api/simulation-api.cjs.map +1 -1
  9. package/dist/api/simulation-api.d.cts +4 -2
  10. package/dist/api/simulation-api.d.cts.map +1 -1
  11. package/dist/api/simulation-api.d.mts +4 -2
  12. package/dist/api/simulation-api.d.mts.map +1 -1
  13. package/dist/api/simulation-api.mjs.map +1 -1
  14. package/dist/helpers/IncomingTransactionHelper.cjs +54 -3
  15. package/dist/helpers/IncomingTransactionHelper.cjs.map +1 -1
  16. package/dist/helpers/IncomingTransactionHelper.d.cts.map +1 -1
  17. package/dist/helpers/IncomingTransactionHelper.d.mts.map +1 -1
  18. package/dist/helpers/IncomingTransactionHelper.mjs +55 -4
  19. package/dist/helpers/IncomingTransactionHelper.mjs.map +1 -1
  20. package/dist/types.cjs.map +1 -1
  21. package/dist/types.d.cts +2 -0
  22. package/dist/types.d.cts.map +1 -1
  23. package/dist/types.d.mts +2 -0
  24. package/dist/types.d.mts.map +1 -1
  25. package/dist/types.mjs.map +1 -1
  26. package/dist/utils/balance-changes.cjs +22 -2
  27. package/dist/utils/balance-changes.cjs.map +1 -1
  28. package/dist/utils/balance-changes.d.cts.map +1 -1
  29. package/dist/utils/balance-changes.d.mts.map +1 -1
  30. package/dist/utils/balance-changes.mjs +22 -2
  31. package/dist/utils/balance-changes.mjs.map +1 -1
  32. package/dist/utils/batch.cjs +2 -2
  33. package/dist/utils/batch.cjs.map +1 -1
  34. package/dist/utils/batch.mjs +2 -2
  35. package/dist/utils/batch.mjs.map +1 -1
  36. package/dist/utils/feature-flags.cjs +14 -1
  37. package/dist/utils/feature-flags.cjs.map +1 -1
  38. package/dist/utils/feature-flags.d.cts +11 -0
  39. package/dist/utils/feature-flags.d.cts.map +1 -1
  40. package/dist/utils/feature-flags.d.mts +11 -0
  41. package/dist/utils/feature-flags.d.mts.map +1 -1
  42. package/dist/utils/feature-flags.mjs +12 -0
  43. package/dist/utils/feature-flags.mjs.map +1 -1
  44. package/package.json +2 -1
package/CHANGELOG.md CHANGED
@@ -7,12 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [62.10.0]
11
+
10
12
  ### Added
11
13
 
14
+ - Add support for enhanced transaction history retrieval via WebSocket events ([#7689](https://github.com/MetaMask/core/pull/7689))
12
15
  - Add support for `submitHistoryLimit` feature flag to configure the maximum number of entries in the submit history ([#7648](https://github.com/MetaMask/core/pull/7648))
13
16
  - Defaults to 100 if not provided.
14
17
  - Add support for `transactionHistoryLimit` feature flag to configure the maximum number of transactions stored in state ([#7648](https://github.com/MetaMask/core/pull/7648))
15
18
  - Defaults to 40 if not provided.
19
+ - Add optional `callTraceErrors` to `simulationData` ([#7641](https://github.com/MetaMask/core/pull/7641))
16
20
 
17
21
  ### Changed
18
22
 
@@ -20,6 +24,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
20
24
  - Use the `transactionHistoryLimit` feature flag in `RemoteFeatureFlagController` instead.
21
25
  - This option will be removed in a future version.
22
26
 
27
+ ### Fixed
28
+
29
+ - Ensure provided `batchId` is used in `addTransactionBatch` when going through the publish batch hook route ([#7705](https://github.com/MetaMask/core/pull/7705))
30
+
23
31
  ## [62.9.2]
24
32
 
25
33
  ### Changed
@@ -2098,7 +2106,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2098
2106
 
2099
2107
  All changes listed after this point were applied to this package following the monorepo conversion.
2100
2108
 
2101
- [Unreleased]: https://github.com/MetaMask/core/compare/@metamask/transaction-controller@62.9.2...HEAD
2109
+ [Unreleased]: https://github.com/MetaMask/core/compare/@metamask/transaction-controller@62.10.0...HEAD
2110
+ [62.10.0]: https://github.com/MetaMask/core/compare/@metamask/transaction-controller@62.9.2...@metamask/transaction-controller@62.10.0
2102
2111
  [62.9.2]: https://github.com/MetaMask/core/compare/@metamask/transaction-controller@62.9.1...@metamask/transaction-controller@62.9.2
2103
2112
  [62.9.1]: https://github.com/MetaMask/core/compare/@metamask/transaction-controller@62.9.0...@metamask/transaction-controller@62.9.1
2104
2113
  [62.9.0]: https://github.com/MetaMask/core/compare/@metamask/transaction-controller@62.8.0...@metamask/transaction-controller@62.9.0