@metamask-previews/assets-controllers 46.0.0-preview-4c4eb52a → 46.0.1-preview-9df90b5
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 +17 -1
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [46.0.1]
|
|
11
|
+
|
|
12
|
+
### Changed
|
|
13
|
+
|
|
14
|
+
- Bump `@metamask/keyring-api` from `^13.0.0` to `^14.0.0` ([#5177](https://github.com/MetaMask/core/pull/5177))
|
|
15
|
+
- Bump `@metamask/keyring-internal-api` from `^2.0.0` to `^2.0.1` ([#5177](https://github.com/MetaMask/core/pull/5177))
|
|
16
|
+
- Bump `@metamask/keyring-snap-client` from `^2.0.0` to `^3.0.0` ([#5177](https://github.com/MetaMask/core/pull/5177))
|
|
17
|
+
|
|
18
|
+
### Fixed
|
|
19
|
+
|
|
20
|
+
- Fix type issue in `ERC721Standard.getDetails` ([#4985](https://github.com/MetaMask/core/pull/4985))
|
|
21
|
+
- The image variable now returns a string instead of a promise when the token image uses the 'ipfs://' protocol.
|
|
22
|
+
- Relax NFTs metadata RPC calls ([#5134](https://github.com/MetaMask/core/pull/5134))
|
|
23
|
+
- We now check the number of NFTs to update against a threshold value (500) to avoid sending an excessive amount of RPC calls to fetch NFTs metadata.
|
|
24
|
+
|
|
10
25
|
## [46.0.0]
|
|
11
26
|
|
|
12
27
|
### Added
|
|
@@ -1323,7 +1338,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
1323
1338
|
|
|
1324
1339
|
- Use Ethers for AssetsContractController ([#845](https://github.com/MetaMask/core/pull/845))
|
|
1325
1340
|
|
|
1326
|
-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/assets-controllers@46.0.
|
|
1341
|
+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/assets-controllers@46.0.1...HEAD
|
|
1342
|
+
[46.0.1]: https://github.com/MetaMask/core/compare/@metamask/assets-controllers@46.0.0...@metamask/assets-controllers@46.0.1
|
|
1327
1343
|
[46.0.0]: https://github.com/MetaMask/core/compare/@metamask/assets-controllers@45.1.2...@metamask/assets-controllers@46.0.0
|
|
1328
1344
|
[45.1.2]: https://github.com/MetaMask/core/compare/@metamask/assets-controllers@45.1.1...@metamask/assets-controllers@45.1.2
|
|
1329
1345
|
[45.1.1]: https://github.com/MetaMask/core/compare/@metamask/assets-controllers@45.1.0...@metamask/assets-controllers@45.1.1
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@metamask-previews/assets-controllers",
|
|
3
|
-
"version": "46.0.
|
|
3
|
+
"version": "46.0.1-preview-9df90b5",
|
|
4
4
|
"description": "Controllers which manage interactions involving ERC-20, ERC-721, and ERC-1155 tokens (including NFTs)",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"MetaMask",
|
|
@@ -77,14 +77,14 @@
|
|
|
77
77
|
},
|
|
78
78
|
"devDependencies": {
|
|
79
79
|
"@babel/runtime": "^7.23.9",
|
|
80
|
-
"@metamask/accounts-controller": "^21.0.
|
|
80
|
+
"@metamask/accounts-controller": "^21.0.2",
|
|
81
81
|
"@metamask/approval-controller": "^7.1.2",
|
|
82
82
|
"@metamask/auto-changelog": "^3.4.4",
|
|
83
83
|
"@metamask/ethjs-provider-http": "^0.3.0",
|
|
84
|
-
"@metamask/keyring-api": "^
|
|
85
|
-
"@metamask/keyring-controller": "^19.0.
|
|
86
|
-
"@metamask/keyring-internal-api": "^2.0.
|
|
87
|
-
"@metamask/keyring-snap-client": "^
|
|
84
|
+
"@metamask/keyring-api": "^14.0.0",
|
|
85
|
+
"@metamask/keyring-controller": "^19.0.4",
|
|
86
|
+
"@metamask/keyring-internal-api": "^2.0.1",
|
|
87
|
+
"@metamask/keyring-snap-client": "^3.0.0",
|
|
88
88
|
"@metamask/network-controller": "^22.1.1",
|
|
89
89
|
"@metamask/preferences-controller": "^15.0.1",
|
|
90
90
|
"@metamask/providers": "^18.1.1",
|