@exodus/headless 5.0.0-rc.76 → 5.0.0-rc.78

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,16 @@
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
+ ## [5.0.0-rc.78](https://github.com/ExodusMovement/exodus-hydra/compare/@exodus/headless@5.0.0-rc.77...@exodus/headless@5.0.0-rc.78) (2025-08-12)
7
+
8
+ **Note:** Version bump only for package @exodus/headless
9
+
10
+ ## [5.0.0-rc.77](https://github.com/ExodusMovement/exodus-hydra/compare/@exodus/headless@5.0.0-rc.76...@exodus/headless@5.0.0-rc.77) (2025-08-08)
11
+
12
+ ### Features
13
+
14
+ - feat(headless): bump assets feature (#13515)
15
+
6
16
  ## [5.0.0-rc.76](https://github.com/ExodusMovement/exodus-hydra/compare/@exodus/headless@5.0.0-rc.75...@exodus/headless@5.0.0-rc.76) (2025-07-18)
7
17
 
8
18
  **Note:** Version bump only for package @exodus/headless
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@exodus/headless",
3
- "version": "5.0.0-rc.76",
3
+ "version": "5.0.0-rc.78",
4
4
  "description": "The platform-agnostic Exodus wallet SDK",
5
5
  "author": "Exodus Movement, Inc.",
6
6
  "type": "module",
@@ -36,7 +36,7 @@
36
36
  "@exodus/application": "^2.10.0",
37
37
  "@exodus/argo": "^2.2.1",
38
38
  "@exodus/asset-sources": "^1.4.1",
39
- "@exodus/assets-feature": "^7.0.0",
39
+ "@exodus/assets-feature": "^8.2.0",
40
40
  "@exodus/atoms": "^9.0.0",
41
41
  "@exodus/available-assets": "^8.4.0",
42
42
  "@exodus/balances": "^13.7.1",
@@ -66,7 +66,7 @@
66
66
  "@exodus/tx-signer": "^2.3.4",
67
67
  "@exodus/typeforce": "^1.18.1",
68
68
  "@exodus/wallet": "^15.1.0",
69
- "@exodus/wallet-accounts": "^17.6.1",
69
+ "@exodus/wallet-accounts": "^18.0.0",
70
70
  "lodash": "^4.17.21",
71
71
  "minimalistic-assert": "^1.0.1",
72
72
  "ms": "^2.1.3"
@@ -76,7 +76,7 @@
76
76
  "@exodus/algorand-lib": "^2.0.1",
77
77
  "@exodus/algorand-meta": "^2.0.0",
78
78
  "@exodus/analytics": "^15.4.0",
79
- "@exodus/announcements": "^3.0.0",
79
+ "@exodus/announcements": "^3.1.0",
80
80
  "@exodus/app-process-mobile": "^3.10.0",
81
81
  "@exodus/apy-rates": "^3.6.0",
82
82
  "@exodus/bip32": "^4.0.2",
@@ -90,23 +90,23 @@
90
90
  "@exodus/domain-serialization": "^1.6.1",
91
91
  "@exodus/ethereum-lib": "^5.0.0",
92
92
  "@exodus/ethereum-meta": "^2.4.1",
93
- "@exodus/event-log": "^2.8.0",
93
+ "@exodus/event-log": "^2.9.0",
94
94
  "@exodus/fetch": "^1.2.1",
95
95
  "@exodus/fetch-factory": "^2.3.0",
96
- "@exodus/fiat-ramp": "^14.0.2",
96
+ "@exodus/fiat-ramp": "^14.1.0",
97
97
  "@exodus/key-identifier": "^1.2.1",
98
98
  "@exodus/kyc": "^7.1.0",
99
99
  "@exodus/logger": "^1.2.3",
100
100
  "@exodus/market-history": "^10.3.1",
101
- "@exodus/models": "^12.14.0",
101
+ "@exodus/models": "^12.15.0",
102
102
  "@exodus/nfts": "^9.6.1",
103
103
  "@exodus/personal-notes": "^3.8.0",
104
104
  "@exodus/referrals": "^8.10.0",
105
105
  "@exodus/sdk-rpc": "^1.0.0",
106
106
  "@exodus/solana-lib": "^3.6.0",
107
107
  "@exodus/solana-meta": "^2.0.0",
108
- "@exodus/storage-encrypted": "^1.5.0",
109
- "@exodus/storage-memory": "^2.2.2",
108
+ "@exodus/storage-encrypted": "^1.5.1",
109
+ "@exodus/storage-memory": "^2.3.0",
110
110
  "@exodus/top-movers-monitor": "^4.4.1",
111
111
  "@exodus/ui-config": "^3.13.0",
112
112
  "@exodus/wallet-sdk": "^1.3.0",
@@ -137,5 +137,5 @@
137
137
  "publishConfig": {
138
138
  "access": "public"
139
139
  },
140
- "gitHead": "48eec36bc6490d165d3cc0183d5c9fbec45b5ec1"
140
+ "gitHead": "f4158b95346dce7feea2f6ff99408f8bc3f3cced"
141
141
  }
package/src/index.js CHANGED
@@ -164,8 +164,9 @@ const createExodus = (opts) => {
164
164
  if (typeof storage.unlock === 'function') unlockEncryptedStorage(storage)
165
165
 
166
166
  // normally unlocked during migrations, also unlock here just in case
167
- if (typeof migrateableStorage.unlock === 'function')
167
+ if (typeof migrateableStorage.unlock === 'function') {
168
168
  unlockEncryptedStorage(migrateableStorage)
169
+ }
169
170
  })
170
171
 
171
172
  application.on('clear', () => port.emit('clear'))