@exodus/headless 2.0.0-alpha.133 → 2.0.0-alpha.134
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 +7 -0
- package/package.json +6 -5
- package/src/index.js +2 -0
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,13 @@
|
|
|
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
|
+
## [2.0.0-alpha.134](https://github.com/ExodusMovement/exodus-hydra/compare/@exodus/headless@2.0.0-alpha.133...@exodus/headless@2.0.0-alpha.134) (2023-10-05)
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
- **ui-config:** do not emit using atom id ([#4342](https://github.com/ExodusMovement/exodus-hydra/issues/4342)) ([df9d7b6](https://github.com/ExodusMovement/exodus-hydra/commit/df9d7b67bbca1c351128afd2e7a76a718dd71a79))
|
|
11
|
+
- use transaction signer ([#3751](https://github.com/ExodusMovement/exodus-hydra/issues/3751)) ([0e60e89](https://github.com/ExodusMovement/exodus-hydra/commit/0e60e8963a799435c5528f596447813b9e012ead))
|
|
12
|
+
|
|
6
13
|
## [2.0.0-alpha.133](https://github.com/ExodusMovement/exodus-hydra/compare/@exodus/headless@2.0.0-alpha.132...@exodus/headless@2.0.0-alpha.133) (2023-10-04)
|
|
7
14
|
|
|
8
15
|
### Features
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@exodus/headless",
|
|
3
|
-
"version": "2.0.0-alpha.
|
|
3
|
+
"version": "2.0.0-alpha.134",
|
|
4
4
|
"description": "The platform-agnostic Exodus wallet SDK",
|
|
5
5
|
"author": "Exodus Movement Inc.",
|
|
6
6
|
"main": "src/index.js",
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
29
|
"@exodus/address-provider": "^7.4.4",
|
|
30
|
-
"@exodus/assets-feature": "^3.
|
|
30
|
+
"@exodus/assets-feature": "^3.3.0",
|
|
31
31
|
"@exodus/atoms": "^5.7.1",
|
|
32
32
|
"@exodus/auto-enable-assets-plugin": "^4.3.0",
|
|
33
33
|
"@exodus/available-assets": "^6.0.0",
|
|
@@ -51,7 +51,8 @@
|
|
|
51
51
|
"@exodus/remote-config": "^2.2.0",
|
|
52
52
|
"@exodus/restore-progress-tracker": "^3.0.0",
|
|
53
53
|
"@exodus/sodium-crypto": "^3.2.0",
|
|
54
|
-
"@exodus/
|
|
54
|
+
"@exodus/tx-signer": "^1.0.0",
|
|
55
|
+
"@exodus/wallet": "^10.0.0",
|
|
55
56
|
"@exodus/wallet-accounts": "^14.1.0",
|
|
56
57
|
"@exodus/wallet-compatibility-modes": "^3.1.1",
|
|
57
58
|
"bip39": "^2.6.0",
|
|
@@ -85,7 +86,7 @@
|
|
|
85
86
|
"@exodus/storage-encrypted": "^1.1.2",
|
|
86
87
|
"@exodus/storage-memory": "^2.1.1",
|
|
87
88
|
"@exodus/top-movers-monitor": "^3.2.0",
|
|
88
|
-
"@exodus/ui-config": "^3.
|
|
89
|
+
"@exodus/ui-config": "^3.2.0",
|
|
89
90
|
"@exodus/wild-emitter": "^1.0.0",
|
|
90
91
|
"buffer-json": "^2.0.0",
|
|
91
92
|
"deepmerge": "^4.2.2",
|
|
@@ -97,5 +98,5 @@
|
|
|
97
98
|
"msw": "^1.3.0",
|
|
98
99
|
"p-defer": "^4.0.0"
|
|
99
100
|
},
|
|
100
|
-
"gitHead": "
|
|
101
|
+
"gitHead": "791e546a70c1e544e7bb0e64502e431670b9bb86"
|
|
101
102
|
}
|
package/src/index.js
CHANGED
|
@@ -13,6 +13,7 @@ import pricing from '@exodus/pricing'
|
|
|
13
13
|
import rates from '@exodus/rates-monitor'
|
|
14
14
|
import remoteConfig from '@exodus/remote-config'
|
|
15
15
|
import restoreProgressTracker from '@exodus/restore-progress-tracker'
|
|
16
|
+
import transactionSigner from '@exodus/tx-signer'
|
|
16
17
|
import wallet from '@exodus/wallet'
|
|
17
18
|
import walletAccounts from '@exodus/wallet-accounts'
|
|
18
19
|
|
|
@@ -36,6 +37,7 @@ const createExodus = ({ adapters, config, port }) => {
|
|
|
36
37
|
ioc.use(keychain(config.keychain))
|
|
37
38
|
ioc.use(locale())
|
|
38
39
|
ioc.use(pricing())
|
|
40
|
+
ioc.use(transactionSigner())
|
|
39
41
|
ioc.use(rates())
|
|
40
42
|
ioc.use(remoteConfig())
|
|
41
43
|
ioc.use(restoreProgressTracker())
|