@exodus/headless 5.0.0-rc.96 → 5.0.0-rc.98
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 +18 -0
- package/package.json +14 -15
- package/redux/index.js +2 -2
- package/src/api/index.js +0 -1
- package/src/index.d.ts +4 -3
- package/src/index.js +0 -6
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,24 @@
|
|
|
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.98](https://github.com/ExodusMovement/exodus-hydra/compare/@exodus/headless@5.0.0-rc.97...@exodus/headless@5.0.0-rc.98) (2026-06-03)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @exodus/headless
|
|
9
|
+
|
|
10
|
+
## [5.0.0-rc.97](https://github.com/ExodusMovement/exodus-hydra/compare/@exodus/headless@5.0.0-rc.96...@exodus/headless@5.0.0-rc.97) (2026-06-03)
|
|
11
|
+
|
|
12
|
+
### ⚠ BREAKING CHANGES
|
|
13
|
+
|
|
14
|
+
- remove multi-seed support from wallet/keychain (#16379)
|
|
15
|
+
|
|
16
|
+
### Features
|
|
17
|
+
|
|
18
|
+
- **keychain:** expose needed exports at the root ([#16638](https://github.com/ExodusMovement/exodus-hydra/issues/16638)) ([30b1e96](https://github.com/ExodusMovement/exodus-hydra/commit/30b1e9644d476958f8a8c53e36a87dec3d27c7fb)), closes [#16361](https://github.com/ExodusMovement/exodus-hydra/issues/16361) [#16361](https://github.com/ExodusMovement/exodus-hydra/issues/16361)
|
|
19
|
+
|
|
20
|
+
### Code Refactoring
|
|
21
|
+
|
|
22
|
+
- remove multi-seed support from wallet/keychain ([#16379](https://github.com/ExodusMovement/exodus-hydra/issues/16379)) ([e63510f](https://github.com/ExodusMovement/exodus-hydra/commit/e63510f2b57b7bcb7704d993baf2e75d11edb3ad))
|
|
23
|
+
|
|
6
24
|
## [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
25
|
|
|
8
26
|
### ⚠ BREAKING CHANGES
|
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.98",
|
|
4
4
|
"description": "The platform-agnostic Exodus wallet SDK",
|
|
5
5
|
"author": "Exodus Movement, Inc.",
|
|
6
6
|
"type": "module",
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
35
|
"@exodus/address-provider": "^12.9.4",
|
|
36
|
-
"@exodus/application": "^
|
|
36
|
+
"@exodus/application": "^3.0.0",
|
|
37
37
|
"@exodus/argo": "^2.2.1",
|
|
38
38
|
"@exodus/asset-sources": "^1.8.1",
|
|
39
39
|
"@exodus/assets-feature": "^9.0.0",
|
|
@@ -50,9 +50,9 @@
|
|
|
50
50
|
"@exodus/fee-data-monitors": "^5.0.5",
|
|
51
51
|
"@exodus/filesystem": "^1.2.1",
|
|
52
52
|
"@exodus/geolocation": "^4.4.0",
|
|
53
|
-
"@exodus/key-ids": "^
|
|
53
|
+
"@exodus/key-ids": "^2.0.0",
|
|
54
54
|
"@exodus/key-viewer": "^1.1.5",
|
|
55
|
-
"@exodus/keychain": "^
|
|
55
|
+
"@exodus/keychain": "^11.0.0",
|
|
56
56
|
"@exodus/locale": "^2.7.0",
|
|
57
57
|
"@exodus/message-signer": "^3.0.0",
|
|
58
58
|
"@exodus/pricing": "^1.10.0",
|
|
@@ -64,7 +64,7 @@
|
|
|
64
64
|
"@exodus/tx-log-monitors": "^3.0.0",
|
|
65
65
|
"@exodus/tx-signer": "^3.0.0",
|
|
66
66
|
"@exodus/typeforce": "^1.18.1",
|
|
67
|
-
"@exodus/wallet": "^
|
|
67
|
+
"@exodus/wallet": "^17.0.0",
|
|
68
68
|
"@exodus/wallet-accounts": "^20.0.0",
|
|
69
69
|
"lodash": "^4.17.21",
|
|
70
70
|
"minimalistic-assert": "^1.0.1",
|
|
@@ -74,9 +74,9 @@
|
|
|
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": "^
|
|
77
|
+
"@exodus/analytics": "^16.0.0",
|
|
78
78
|
"@exodus/announcements": "^3.2.2",
|
|
79
|
-
"@exodus/app-process-mobile": "^3.10.
|
|
79
|
+
"@exodus/app-process-mobile": "^3.10.1",
|
|
80
80
|
"@exodus/apy-rates": "^3.7.0",
|
|
81
81
|
"@exodus/bip32": "^4.0.2",
|
|
82
82
|
"@exodus/bip39": "^1.1.0",
|
|
@@ -91,15 +91,14 @@
|
|
|
91
91
|
"@exodus/event-log": "^2.10.1",
|
|
92
92
|
"@exodus/fetch": "^1.2.1",
|
|
93
93
|
"@exodus/fetch-factory": "^2.4.1",
|
|
94
|
-
"@exodus/fiat-ramp": "^15.21.
|
|
94
|
+
"@exodus/fiat-ramp": "^15.21.2",
|
|
95
95
|
"@exodus/key-identifier": "^1.2.1",
|
|
96
|
-
"@exodus/kyc": "^7.2.
|
|
96
|
+
"@exodus/kyc": "^7.2.1",
|
|
97
97
|
"@exodus/logger": "^1.2.3",
|
|
98
|
-
"@exodus/market-history": "^10.7.
|
|
99
|
-
"@exodus/models": "^13.
|
|
98
|
+
"@exodus/market-history": "^10.7.1",
|
|
99
|
+
"@exodus/models": "^13.3.0",
|
|
100
100
|
"@exodus/nfts": "^9.6.2",
|
|
101
101
|
"@exodus/personal-notes": "^3.9.0",
|
|
102
|
-
"@exodus/referrals": "^8.10.1",
|
|
103
102
|
"@exodus/sdk-rpc": "^1.0.0",
|
|
104
103
|
"@exodus/solana-lib": "^3.6.0",
|
|
105
104
|
"@exodus/solana-meta": "^2.0.0",
|
|
@@ -108,9 +107,9 @@
|
|
|
108
107
|
"@exodus/top-movers-monitor": "^4.4.1",
|
|
109
108
|
"@exodus/traceparent": "^3.0.1",
|
|
110
109
|
"@exodus/ui-config": "^3.13.3",
|
|
111
|
-
"@exodus/wallet-sdk": "^2.0.
|
|
110
|
+
"@exodus/wallet-sdk": "^2.0.3",
|
|
112
111
|
"@exodus/wild-emitter": "^1.0.0",
|
|
113
|
-
"@exodus/zod": "^3.24.
|
|
112
|
+
"@exodus/zod": "^3.24.4",
|
|
114
113
|
"buffer-json": "^2.0.0",
|
|
115
114
|
"deepmerge": "^4.2.2",
|
|
116
115
|
"delay": "^5.0.0",
|
|
@@ -137,5 +136,5 @@
|
|
|
137
136
|
"access": "public",
|
|
138
137
|
"provenance": false
|
|
139
138
|
},
|
|
140
|
-
"gitHead": "
|
|
139
|
+
"gitHead": "96d1698075bad272edf9d7969d01a3347d7e0261"
|
|
141
140
|
}
|
package/redux/index.js
CHANGED
|
@@ -6,12 +6,12 @@ import balancesRedux from '@exodus/balances/redux/index.js'
|
|
|
6
6
|
import accountStatesRedux from '@exodus/blockchain-metadata/redux/account-states/index.js'
|
|
7
7
|
import txLogsRedux from '@exodus/blockchain-metadata/redux/tx-logs/index.js'
|
|
8
8
|
import enabledAssetsRedux from '@exodus/enabled-assets/redux/index.js'
|
|
9
|
-
import featureflagsRedux from '@exodus/feature-flags/redux
|
|
9
|
+
import featureflagsRedux from '@exodus/feature-flags/redux'
|
|
10
10
|
import feeDataRedux from '@exodus/fee-data-monitors/redux/index.js'
|
|
11
11
|
import geolocationRedux from '@exodus/geolocation/redux/index.js'
|
|
12
12
|
import localeRedux from '@exodus/locale/redux/index.js'
|
|
13
13
|
import ratesRedux from '@exodus/rates-monitor/redux/index.js'
|
|
14
|
-
import remoteConfigRedux from '@exodus/remote-config/
|
|
14
|
+
import remoteConfigRedux from '@exodus/remote-config/redux'
|
|
15
15
|
import restoreProgressRedux from '@exodus/tx-log-monitors/redux/index.js'
|
|
16
16
|
import startupCounterRedux from '@exodus/startup-counter/redux/index.js'
|
|
17
17
|
import createWalletAccountsRedux from '@exodus/wallet-accounts/redux/index.js'
|
package/src/api/index.js
CHANGED
package/src/index.d.ts
CHANGED
|
@@ -59,7 +59,6 @@ type DefinitionsDebug<D extends Definition> = UnionToIntersection<
|
|
|
59
59
|
>
|
|
60
60
|
|
|
61
61
|
export interface ApplicationWalletApi {
|
|
62
|
-
addSeed(params: { mnemonic: string; compatibilityMode: string }): Promise<string>
|
|
63
62
|
start(): Promise<void>
|
|
64
63
|
stop(): Promise<void>
|
|
65
64
|
load(): Promise<void>
|
|
@@ -160,8 +159,10 @@ type Params = {
|
|
|
160
159
|
debug?: boolean
|
|
161
160
|
}
|
|
162
161
|
|
|
163
|
-
interface ArgoWithApiResolver<D extends Definition>
|
|
164
|
-
|
|
162
|
+
interface ArgoWithApiResolver<D extends Definition> extends Omit<
|
|
163
|
+
Argo<D>,
|
|
164
|
+
'use' | 'registerMultiple' | 'register' | 'resolve'
|
|
165
|
+
> {
|
|
165
166
|
register<N extends Node>(node: N): ArgoWithApiResolver<D | N['definition']>
|
|
166
167
|
registerMultiple<N extends Node>(node: readonly N[]): ArgoWithApiResolver<D | N['definition']>
|
|
167
168
|
use<F extends Feature>(
|
package/src/index.js
CHANGED
|
@@ -139,12 +139,6 @@ const createExodus = (opts) => {
|
|
|
139
139
|
|
|
140
140
|
application.on('import', () => port.emit('import', { walletExists: true }))
|
|
141
141
|
|
|
142
|
-
application.on('add-seed', () => port.emit('add-seed'))
|
|
143
|
-
|
|
144
|
-
application.on('restore-seed', ({ seedId, compatibilityMode }) =>
|
|
145
|
-
port.emit('restore-seed', { seedId, compatibilityMode })
|
|
146
|
-
)
|
|
147
|
-
|
|
148
142
|
application.hook('unlock', async () => {
|
|
149
143
|
if (typeof storage.unlock === 'function') unlockEncryptedStorage(storage)
|
|
150
144
|
|