@metamask-previews/transaction-controller 62.9.2-preview-766f7065 → 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 (40) hide show
  1. package/CHANGELOG.md +6 -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/feature-flags.cjs +14 -1
  33. package/dist/utils/feature-flags.cjs.map +1 -1
  34. package/dist/utils/feature-flags.d.cts +11 -0
  35. package/dist/utils/feature-flags.d.cts.map +1 -1
  36. package/dist/utils/feature-flags.d.mts +11 -0
  37. package/dist/utils/feature-flags.d.mts.map +1 -1
  38. package/dist/utils/feature-flags.mjs +12 -0
  39. package/dist/utils/feature-flags.mjs.map +1 -1
  40. 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
 
@@ -2102,7 +2106,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2102
2106
 
2103
2107
  All changes listed after this point were applied to this package following the monorepo conversion.
2104
2108
 
2105
- [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
2106
2111
  [62.9.2]: https://github.com/MetaMask/core/compare/@metamask/transaction-controller@62.9.1...@metamask/transaction-controller@62.9.2
2107
2112
  [62.9.1]: https://github.com/MetaMask/core/compare/@metamask/transaction-controller@62.9.0...@metamask/transaction-controller@62.9.1
2108
2113
  [62.9.0]: https://github.com/MetaMask/core/compare/@metamask/transaction-controller@62.8.0...@metamask/transaction-controller@62.9.0