@exodus/headless 5.0.0-rc.94 → 5.0.0-rc.95
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 +6 -0
- package/package.json +6 -6
- package/src/index.js +2 -5
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
|
+
## [5.0.0-rc.95](https://github.com/ExodusMovement/exodus-hydra/compare/@exodus/headless@5.0.0-rc.94...@exodus/headless@5.0.0-rc.95) (2026-04-07)
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
- fix(headless): forward restore-seed payload to port (BUG-001) (#15841)
|
|
11
|
+
|
|
6
12
|
## [5.0.0-rc.94](https://github.com/ExodusMovement/exodus-hydra/compare/@exodus/headless@5.0.0-rc.93...@exodus/headless@5.0.0-rc.94) (2026-03-11)
|
|
7
13
|
|
|
8
14
|
**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.
|
|
3
|
+
"version": "5.0.0-rc.95",
|
|
4
4
|
"description": "The platform-agnostic Exodus wallet SDK",
|
|
5
5
|
"author": "Exodus Movement, Inc.",
|
|
6
6
|
"type": "module",
|
|
@@ -92,12 +92,12 @@
|
|
|
92
92
|
"@exodus/event-log": "^2.10.0",
|
|
93
93
|
"@exodus/fetch": "^1.2.1",
|
|
94
94
|
"@exodus/fetch-factory": "^2.4.1",
|
|
95
|
-
"@exodus/fiat-ramp": "^15.
|
|
95
|
+
"@exodus/fiat-ramp": "^15.21.0",
|
|
96
96
|
"@exodus/key-identifier": "^1.2.1",
|
|
97
97
|
"@exodus/kyc": "^7.1.0",
|
|
98
98
|
"@exodus/logger": "^1.2.3",
|
|
99
|
-
"@exodus/market-history": "^10.6.
|
|
100
|
-
"@exodus/models": "^13.
|
|
99
|
+
"@exodus/market-history": "^10.6.2",
|
|
100
|
+
"@exodus/models": "^13.1.4",
|
|
101
101
|
"@exodus/nfts": "^9.6.2",
|
|
102
102
|
"@exodus/personal-notes": "^3.9.0",
|
|
103
103
|
"@exodus/referrals": "^8.10.1",
|
|
@@ -105,7 +105,7 @@
|
|
|
105
105
|
"@exodus/solana-lib": "^3.6.0",
|
|
106
106
|
"@exodus/solana-meta": "^2.0.0",
|
|
107
107
|
"@exodus/storage-encrypted": "^1.5.1",
|
|
108
|
-
"@exodus/storage-memory": "^2.
|
|
108
|
+
"@exodus/storage-memory": "^2.4.0",
|
|
109
109
|
"@exodus/top-movers-monitor": "^4.4.1",
|
|
110
110
|
"@exodus/traceparent": "^3.0.1",
|
|
111
111
|
"@exodus/ui-config": "^3.13.3",
|
|
@@ -138,5 +138,5 @@
|
|
|
138
138
|
"access": "public",
|
|
139
139
|
"provenance": false
|
|
140
140
|
},
|
|
141
|
-
"gitHead": "
|
|
141
|
+
"gitHead": "f108687ccd8369a86582fe56d7df92a2afa01c31"
|
|
142
142
|
}
|
package/src/index.js
CHANGED
|
@@ -141,11 +141,8 @@ const createExodus = (opts) => {
|
|
|
141
141
|
|
|
142
142
|
application.on('add-seed', () => port.emit('add-seed'))
|
|
143
143
|
|
|
144
|
-
application.on(
|
|
145
|
-
'restore-seed',
|
|
146
|
-
() =>
|
|
147
|
-
({ seedId, compatibilityMode } = Object.create(null)) =>
|
|
148
|
-
port.emit('restore-seed', { seedId, compatibilityMode })
|
|
144
|
+
application.on('restore-seed', ({ seedId, compatibilityMode }) =>
|
|
145
|
+
port.emit('restore-seed', { seedId, compatibilityMode })
|
|
149
146
|
)
|
|
150
147
|
|
|
151
148
|
application.hook('unlock', async () => {
|