@metamask-previews/perps-controller 6.1.0-preview-f38d551fa → 6.2.0-preview-1275d0fda
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
|
+
## [6.2.0]
|
|
11
|
+
|
|
12
|
+
### Changed
|
|
13
|
+
|
|
14
|
+
- Pass `isInternal: true` to all internal `addTransaction` calls to adopt the explicit `isInternal` flag introduced in `@metamask/transaction-controller` ([#8633](https://github.com/MetaMask/core/pull/8633))
|
|
15
|
+
- Bump `@metamask/transaction-controller` from `^65.4.0` to `^66.0.0` ([#8848](https://github.com/MetaMask/core/pull/8848))
|
|
16
|
+
|
|
10
17
|
## [6.1.0]
|
|
11
18
|
|
|
12
19
|
### Changed
|
|
@@ -298,7 +305,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
298
305
|
|
|
299
306
|
- Bump `@metamask/controller-utils` from `^11.18.0` to `^11.19.0` ([#7995](https://github.com/MetaMask/core/pull/7995))
|
|
300
307
|
|
|
301
|
-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/perps-controller@6.
|
|
308
|
+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/perps-controller@6.2.0...HEAD
|
|
309
|
+
[6.2.0]: https://github.com/MetaMask/core/compare/@metamask/perps-controller@6.1.0...@metamask/perps-controller@6.2.0
|
|
302
310
|
[6.1.0]: https://github.com/MetaMask/core/compare/@metamask/perps-controller@6.0.1...@metamask/perps-controller@6.1.0
|
|
303
311
|
[6.0.1]: https://github.com/MetaMask/core/compare/@metamask/perps-controller@6.0.0...@metamask/perps-controller@6.0.1
|
|
304
312
|
[6.0.0]: https://github.com/MetaMask/core/compare/@metamask/perps-controller@5.0.0...@metamask/perps-controller@6.0.0
|
package/dist/PerpsController.cjs
CHANGED
|
@@ -3078,7 +3078,7 @@ async function _PerpsController_submitTransaction(txParams, options) {
|
|
|
3078
3078
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
3079
3079
|
txParams,
|
|
3080
3080
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
3081
|
-
options);
|
|
3081
|
+
{ ...options, isInternal: true });
|
|
3082
3082
|
}, _PerpsController_migrateRequestsIfNeeded = function _PerpsController_migrateRequestsIfNeeded() {
|
|
3083
3083
|
this.update((state) => {
|
|
3084
3084
|
// Remove withdrawal requests without accountAddress - they can't be attributed to any account
|