@metamask-previews/assets-controllers 109.2.2-preview-1bd5239bf → 109.3.0-preview-2855dbf4e
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 +10 -3
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [109.3.0]
|
|
11
|
+
|
|
10
12
|
### Added
|
|
11
13
|
|
|
12
14
|
- Snap account-asset enrichment via `getAccountAssetInfo`; balance rows and `Asset.extra` carry chain-specific fields; export `isStellarClassicTrustlineInactiveForDisplay` for Stellar trustline UX ([#8828](https://github.com/MetaMask/core/pull/8828))
|
|
@@ -14,9 +16,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
14
16
|
### Changed
|
|
15
17
|
|
|
16
18
|
- Bump `@metamask/keyring-api` from `^23.1.0` to `^23.3.0` ([#9249](https://github.com/MetaMask/core/pull/9249))
|
|
17
|
-
- Bump `@metamask/transaction-controller` from `^68.1.1` to `^68.2.
|
|
19
|
+
- Bump `@metamask/transaction-controller` from `^68.1.1` to `^68.2.2` ([#9253](https://github.com/MetaMask/core/pull/9253), [#9337](https://github.com/MetaMask/core/pull/9337), [#9349](https://github.com/MetaMask/core/pull/9349))
|
|
18
20
|
- Bump `@metamask/multichain-account-service` from `^11.0.0` to `^11.1.0` ([#9264](https://github.com/MetaMask/core/pull/9264))
|
|
19
|
-
- Bump `@metamask/core-backend` from `^6.3.3` to `^6.
|
|
21
|
+
- Bump `@metamask/core-backend` from `^6.3.3` to `^6.5.0` ([#9312](https://github.com/MetaMask/core/pull/9312), [#9349](https://github.com/MetaMask/core/pull/9349))
|
|
22
|
+
- Bump `@metamask/accounts-controller` from `^39.0.3` to `^39.0.4` ([#9349](https://github.com/MetaMask/core/pull/9349))
|
|
23
|
+
- Bump `@metamask/network-controller` from `^33.0.0` to `^34.0.0` ([#9349](https://github.com/MetaMask/core/pull/9349))
|
|
24
|
+
- Bump `@metamask/network-enablement-controller` from `^5.4.0` to `^5.4.1` ([#9349](https://github.com/MetaMask/core/pull/9349))
|
|
25
|
+
- Bump `@metamask/polling-controller` from `^16.0.7` to `^16.0.8` ([#9349](https://github.com/MetaMask/core/pull/9349))
|
|
20
26
|
|
|
21
27
|
## [109.2.2]
|
|
22
28
|
|
|
@@ -3261,7 +3267,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
3261
3267
|
|
|
3262
3268
|
- Use Ethers for AssetsContractController ([#845](https://github.com/MetaMask/core/pull/845))
|
|
3263
3269
|
|
|
3264
|
-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/assets-controllers@109.
|
|
3270
|
+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/assets-controllers@109.3.0...HEAD
|
|
3271
|
+
[109.3.0]: https://github.com/MetaMask/core/compare/@metamask/assets-controllers@109.2.2...@metamask/assets-controllers@109.3.0
|
|
3265
3272
|
[109.2.2]: https://github.com/MetaMask/core/compare/@metamask/assets-controllers@109.2.1...@metamask/assets-controllers@109.2.2
|
|
3266
3273
|
[109.2.1]: https://github.com/MetaMask/core/compare/@metamask/assets-controllers@109.2.0...@metamask/assets-controllers@109.2.1
|
|
3267
3274
|
[109.2.0]: https://github.com/MetaMask/core/compare/@metamask/assets-controllers@109.1.0...@metamask/assets-controllers@109.2.0
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@metamask-previews/assets-controllers",
|
|
3
|
-
"version": "109.
|
|
3
|
+
"version": "109.3.0-preview-2855dbf4e",
|
|
4
4
|
"description": "Controllers which manage interactions involving ERC-20, ERC-721, and ERC-1155 tokens (including NFTs)",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Ethereum",
|
|
@@ -61,23 +61,23 @@
|
|
|
61
61
|
"@ethersproject/providers": "^5.7.0",
|
|
62
62
|
"@metamask/abi-utils": "^2.0.3",
|
|
63
63
|
"@metamask/account-tree-controller": "^7.5.3",
|
|
64
|
-
"@metamask/accounts-controller": "^39.0.
|
|
64
|
+
"@metamask/accounts-controller": "^39.0.4",
|
|
65
65
|
"@metamask/approval-controller": "^9.0.2",
|
|
66
66
|
"@metamask/base-controller": "^9.1.0",
|
|
67
67
|
"@metamask/contract-metadata": "^2.4.0",
|
|
68
68
|
"@metamask/controller-utils": "^12.3.0",
|
|
69
|
-
"@metamask/core-backend": "^6.
|
|
69
|
+
"@metamask/core-backend": "^6.5.0",
|
|
70
70
|
"@metamask/eth-query": "^4.0.0",
|
|
71
71
|
"@metamask/keyring-api": "^23.3.0",
|
|
72
72
|
"@metamask/keyring-controller": "^27.1.0",
|
|
73
73
|
"@metamask/messenger": "^1.2.0",
|
|
74
74
|
"@metamask/metamask-eth-abis": "^3.1.1",
|
|
75
75
|
"@metamask/multichain-account-service": "^11.1.0",
|
|
76
|
-
"@metamask/network-controller": "^
|
|
77
|
-
"@metamask/network-enablement-controller": "^5.4.
|
|
76
|
+
"@metamask/network-controller": "^34.0.0",
|
|
77
|
+
"@metamask/network-enablement-controller": "^5.4.1",
|
|
78
78
|
"@metamask/permission-controller": "^13.1.1",
|
|
79
79
|
"@metamask/phishing-controller": "^17.2.0",
|
|
80
|
-
"@metamask/polling-controller": "^16.0.
|
|
80
|
+
"@metamask/polling-controller": "^16.0.8",
|
|
81
81
|
"@metamask/preferences-controller": "^23.1.0",
|
|
82
82
|
"@metamask/profile-sync-controller": "^28.2.0",
|
|
83
83
|
"@metamask/rpc-errors": "^7.0.2",
|
|
@@ -85,7 +85,7 @@
|
|
|
85
85
|
"@metamask/snaps-sdk": "^11.0.0",
|
|
86
86
|
"@metamask/snaps-utils": "^12.1.2",
|
|
87
87
|
"@metamask/storage-service": "^1.0.2",
|
|
88
|
-
"@metamask/transaction-controller": "^68.2.
|
|
88
|
+
"@metamask/transaction-controller": "^68.2.2",
|
|
89
89
|
"@metamask/utils": "^11.11.0",
|
|
90
90
|
"@tanstack/query-core": "^5.62.16",
|
|
91
91
|
"@types/bn.js": "^5.1.5",
|