@metamask-previews/assets-controller 11.0.0-preview-7d3c923 → 11.0.0-preview-29793f7b0

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
@@ -14,6 +14,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
14
14
 
15
15
  ### Changed
16
16
 
17
+ - Persist `assetsPrice` in `AssetsController` state so last-known prices survive app restart / state rehydration (refreshed on the next price fetch via existing `PriceDataSource` TTL) ([#9566](https://github.com/MetaMask/core/pull/9566))
17
18
  - Memoize hot-path asset ID / legacy-format conversions to cut repeated keccak256 (`toChecksumAddress`) and CAIP parsing ([#9555](https://github.com/MetaMask/core/pull/9555))
18
19
  - `normalizeAssetId` uses lodash `memoize` so already-normalized IDs skip re-checksumming across the pipeline
19
20
  - `formatExchangeRatesForBridge` caches the last result on input identity (`===` for BaseController slices, lodash `isEqual` for rebuilt native maps); exports `FormatExchangeRatesForBridgeParams`
@@ -118,7 +118,7 @@ const stateMetadata = {
118
118
  usedInUi: true,
119
119
  },
120
120
  assetsPrice: {
121
- persist: false,
121
+ persist: true,
122
122
  includeInStateLogs: false,
123
123
  includeInDebugSnapshot: false,
124
124
  usedInUi: true,