@exodus/market-history 9.2.0 → 9.2.1

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
@@ -3,6 +3,12 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [9.2.1](https://github.com/ExodusMovement/exodus-hydra/compare/@exodus/market-history@9.2.0...@exodus/market-history@9.2.1) (2025-03-25)
7
+
8
+ ### Bug Fixes
9
+
10
+ - fix: don't fetch combined assets (#11868)
11
+
6
12
  ## [9.2.0](https://github.com/ExodusMovement/exodus-hydra/compare/@exodus/market-history@9.1.2...@exodus/market-history@9.2.0) (2025-01-24)
7
13
 
8
14
  ### Features
package/module/index.js CHANGED
@@ -168,7 +168,9 @@ class MarketHistoryMonitor {
168
168
 
169
169
  #fetch = async ({ currency, granularity, assetNames, requestLimit, dontReturnCache }) => {
170
170
  const assets = this.assetsModule.getAssets()
171
- const assetTickers = assetNames.map((assetName) => assets[assetName].ticker)
171
+ const assetTickers = assetNames
172
+ .filter((assetName) => !assets[assetName].isCombined)
173
+ .map((assetName) => assets[assetName].ticker)
172
174
 
173
175
  const cacheRefreshData =
174
176
  (await this.storage.get(MARKET_HISTORY_REFRESH_KEY)) || Object.create(null)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@exodus/market-history",
3
- "version": "9.2.0",
3
+ "version": "9.2.1",
4
4
  "description": "Fetches historical prices for assets",
5
5
  "author": "Exodus Movement, Inc.",
6
6
  "license": "MIT",
@@ -35,12 +35,12 @@
35
35
  "devDependencies": {
36
36
  "@exodus/assets": "^8.0.94",
37
37
  "@exodus/assets-base": "^8.1.6",
38
- "@exodus/assets-feature": "^6.0.4",
38
+ "@exodus/assets-feature": "^7.0.2",
39
39
  "@exodus/bitcoin-meta": "^1.0.1",
40
40
  "@exodus/ethereum-meta": "^1.0.30",
41
41
  "@exodus/locale": "^2.3.0",
42
42
  "@exodus/logger": "^1.2.3",
43
- "@exodus/rates-monitor": "^4.7.0",
43
+ "@exodus/rates-monitor": "^4.10.0",
44
44
  "@exodus/redux-dependency-injection": "^4.1.1",
45
45
  "@exodus/storage-memory": "^2.2.2",
46
46
  "events": "^3.3.0",
@@ -57,5 +57,5 @@
57
57
  "publishConfig": {
58
58
  "access": "public"
59
59
  },
60
- "gitHead": "c716740241021a3e38d52776f8592de3fd190af8"
60
+ "gitHead": "858dd5da9fc618acaeaa0825abc71cb8d5bc5c46"
61
61
  }