@exodus/headless 5.0.0-rc.94 → 5.0.0-rc.96
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 +20 -0
- package/package.json +16 -17
- package/src/index.js +2 -5
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,26 @@
|
|
|
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.96](https://github.com/ExodusMovement/exodus-hydra/compare/@exodus/headless@5.0.0-rc.95...@exodus/headless@5.0.0-rc.96) (2026-05-01)
|
|
7
|
+
|
|
8
|
+
### ⚠ BREAKING CHANGES
|
|
9
|
+
|
|
10
|
+
- @exodus/crypto-news-monitor package is removed.
|
|
11
|
+
Consumers relying on the cryptoNews feature in the headless SDK
|
|
12
|
+
must unregister it from their SDK build.
|
|
13
|
+
|
|
14
|
+
### Features
|
|
15
|
+
|
|
16
|
+
- feat: update locale in headless (#16268)
|
|
17
|
+
|
|
18
|
+
- chore: remove @exodus/crypto-news-monitor (#16128)
|
|
19
|
+
|
|
20
|
+
## [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)
|
|
21
|
+
|
|
22
|
+
### Bug Fixes
|
|
23
|
+
|
|
24
|
+
- fix(headless): forward restore-seed payload to port (BUG-001) (#15841)
|
|
25
|
+
|
|
6
26
|
## [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
27
|
|
|
8
28
|
**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.96",
|
|
4
4
|
"description": "The platform-agnostic Exodus wallet SDK",
|
|
5
5
|
"author": "Exodus Movement, Inc.",
|
|
6
6
|
"type": "module",
|
|
@@ -25,11 +25,11 @@
|
|
|
25
25
|
"scripts": {
|
|
26
26
|
"lint": "run -T eslint .",
|
|
27
27
|
"lint:fix": "yarn lint --fix",
|
|
28
|
-
"test": "yarn test:
|
|
28
|
+
"test": "yarn test:single-process && yarn test:multi-process",
|
|
29
29
|
"test:integration": "RUN_TESTS=integration run test",
|
|
30
30
|
"test:single-process": "run -T exodus-test --jest",
|
|
31
31
|
"test:multi-process": "MULTI_PROCESS=1 run test:single-process",
|
|
32
|
-
"
|
|
32
|
+
"typecheck": "run -T tsc --noEmit"
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
35
|
"@exodus/address-provider": "^12.9.4",
|
|
@@ -37,10 +37,10 @@
|
|
|
37
37
|
"@exodus/argo": "^2.2.1",
|
|
38
38
|
"@exodus/asset-sources": "^1.8.1",
|
|
39
39
|
"@exodus/assets-feature": "^9.0.0",
|
|
40
|
-
"@exodus/atoms": "^
|
|
40
|
+
"@exodus/atoms": "^10.3.3",
|
|
41
41
|
"@exodus/available-assets": "^8.4.0",
|
|
42
42
|
"@exodus/balances": "^13.14.0",
|
|
43
|
-
"@exodus/basic-utils": "^
|
|
43
|
+
"@exodus/basic-utils": "^5.0.0",
|
|
44
44
|
"@exodus/blockchain-metadata": "^17.0.0",
|
|
45
45
|
"@exodus/cached-sodium-encryptor": "^1.3.0",
|
|
46
46
|
"@exodus/enabled-assets": "^10.10.1",
|
|
@@ -53,7 +53,7 @@
|
|
|
53
53
|
"@exodus/key-ids": "^1.2.3",
|
|
54
54
|
"@exodus/key-viewer": "^1.1.5",
|
|
55
55
|
"@exodus/keychain": "^9.0.0",
|
|
56
|
-
"@exodus/locale": "^2.
|
|
56
|
+
"@exodus/locale": "^2.7.0",
|
|
57
57
|
"@exodus/message-signer": "^3.0.0",
|
|
58
58
|
"@exodus/pricing": "^1.10.0",
|
|
59
59
|
"@exodus/public-key-provider": "^4.1.1",
|
|
@@ -74,30 +74,29 @@
|
|
|
74
74
|
"@exodus/ab-testing": "^7.9.0",
|
|
75
75
|
"@exodus/algorand-lib": "^3.0.0",
|
|
76
76
|
"@exodus/algorand-meta": "^2.0.0",
|
|
77
|
-
"@exodus/analytics": "^15.5.
|
|
78
|
-
"@exodus/announcements": "^3.2.
|
|
77
|
+
"@exodus/analytics": "^15.5.2",
|
|
78
|
+
"@exodus/announcements": "^3.2.2",
|
|
79
79
|
"@exodus/app-process-mobile": "^3.10.0",
|
|
80
|
-
"@exodus/apy-rates": "^3.
|
|
80
|
+
"@exodus/apy-rates": "^3.7.0",
|
|
81
81
|
"@exodus/bip32": "^4.0.2",
|
|
82
82
|
"@exodus/bip39": "^1.1.0",
|
|
83
83
|
"@exodus/bitcoin-plugin": "^2.0.0",
|
|
84
84
|
"@exodus/connected-origins": "^4.3.0",
|
|
85
85
|
"@exodus/crypto": "^1.0.0-rc.22",
|
|
86
|
-
"@exodus/crypto-news-monitor": "^5.1.1",
|
|
87
86
|
"@exodus/deferring-storage": "^1.0.2",
|
|
88
87
|
"@exodus/dependency-types": "^2.1.1",
|
|
89
88
|
"@exodus/domain-serialization": "^1.8.1",
|
|
90
89
|
"@exodus/ethereum-lib": "^5.0.0",
|
|
91
90
|
"@exodus/ethereum-meta": "^2.4.1",
|
|
92
|
-
"@exodus/event-log": "^2.10.
|
|
91
|
+
"@exodus/event-log": "^2.10.1",
|
|
93
92
|
"@exodus/fetch": "^1.2.1",
|
|
94
93
|
"@exodus/fetch-factory": "^2.4.1",
|
|
95
|
-
"@exodus/fiat-ramp": "^15.
|
|
94
|
+
"@exodus/fiat-ramp": "^15.21.0",
|
|
96
95
|
"@exodus/key-identifier": "^1.2.1",
|
|
97
|
-
"@exodus/kyc": "^7.
|
|
96
|
+
"@exodus/kyc": "^7.2.0",
|
|
98
97
|
"@exodus/logger": "^1.2.3",
|
|
99
|
-
"@exodus/market-history": "^10.
|
|
100
|
-
"@exodus/models": "^13.
|
|
98
|
+
"@exodus/market-history": "^10.7.0",
|
|
99
|
+
"@exodus/models": "^13.2.2",
|
|
101
100
|
"@exodus/nfts": "^9.6.2",
|
|
102
101
|
"@exodus/personal-notes": "^3.9.0",
|
|
103
102
|
"@exodus/referrals": "^8.10.1",
|
|
@@ -105,7 +104,7 @@
|
|
|
105
104
|
"@exodus/solana-lib": "^3.6.0",
|
|
106
105
|
"@exodus/solana-meta": "^2.0.0",
|
|
107
106
|
"@exodus/storage-encrypted": "^1.5.1",
|
|
108
|
-
"@exodus/storage-memory": "^2.
|
|
107
|
+
"@exodus/storage-memory": "^2.4.0",
|
|
109
108
|
"@exodus/top-movers-monitor": "^4.4.1",
|
|
110
109
|
"@exodus/traceparent": "^3.0.1",
|
|
111
110
|
"@exodus/ui-config": "^3.13.3",
|
|
@@ -138,5 +137,5 @@
|
|
|
138
137
|
"access": "public",
|
|
139
138
|
"provenance": false
|
|
140
139
|
},
|
|
141
|
-
"gitHead": "
|
|
140
|
+
"gitHead": "026435e6eccd4cee9646808f1b9888572876696b"
|
|
142
141
|
}
|
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 () => {
|