@exodus/headless 2.0.0-alpha.143 → 2.0.0-alpha.145
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 +10 -0
- package/package.json +6 -5
- package/src/index.js +2 -0
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
|
+
## [2.0.0-alpha.145](https://github.com/ExodusMovement/exodus-hydra/compare/@exodus/headless@2.0.0-alpha.144...@exodus/headless@2.0.0-alpha.145) (2023-11-23)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @exodus/headless
|
|
9
|
+
|
|
10
|
+
## [2.0.0-alpha.144](https://github.com/ExodusMovement/exodus-hydra/compare/@exodus/headless@2.0.0-alpha.143...@exodus/headless@2.0.0-alpha.144) (2023-11-23)
|
|
11
|
+
|
|
12
|
+
### Features
|
|
13
|
+
|
|
14
|
+
- add public key store to headless ([#4852](https://github.com/ExodusMovement/exodus-hydra/issues/4852)) ([c003055](https://github.com/ExodusMovement/exodus-hydra/commit/c0030555487e95aadb9bae78710d85cc1496febd))
|
|
15
|
+
|
|
6
16
|
## [2.0.0-alpha.143](https://github.com/ExodusMovement/exodus-hydra/compare/@exodus/headless@2.0.0-alpha.142...@exodus/headless@2.0.0-alpha.143) (2023-11-22)
|
|
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": "2.0.0-alpha.
|
|
3
|
+
"version": "2.0.0-alpha.145",
|
|
4
4
|
"description": "The platform-agnostic Exodus wallet SDK",
|
|
5
5
|
"author": "Exodus Movement Inc.",
|
|
6
6
|
"main": "src/index.js",
|
|
@@ -26,8 +26,8 @@
|
|
|
26
26
|
"test": "NODE_OPTIONS=--max-old-space-size=4096 jest"
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"@exodus/address-provider": "^
|
|
30
|
-
"@exodus/assets-feature": "^
|
|
29
|
+
"@exodus/address-provider": "^9.0.0",
|
|
30
|
+
"@exodus/assets-feature": "^4.0.0",
|
|
31
31
|
"@exodus/atoms": "^6.0.1",
|
|
32
32
|
"@exodus/auto-enable-assets-plugin": "^4.4.0",
|
|
33
33
|
"@exodus/available-assets": "^8.0.0",
|
|
@@ -47,13 +47,14 @@
|
|
|
47
47
|
"@exodus/locale": "^2.0.2",
|
|
48
48
|
"@exodus/module": "^1.2.2",
|
|
49
49
|
"@exodus/pricing": "^1.1.0",
|
|
50
|
+
"@exodus/public-key-store": "^1.2.0",
|
|
50
51
|
"@exodus/rates-monitor": "^4.0.2",
|
|
51
52
|
"@exodus/remote-config": "^2.3.0",
|
|
52
53
|
"@exodus/restore-progress-tracker": "^3.0.0",
|
|
53
54
|
"@exodus/sodium-crypto": "^3.2.0",
|
|
54
55
|
"@exodus/tx-signer": "^1.1.0",
|
|
55
56
|
"@exodus/wallet": "^10.2.0",
|
|
56
|
-
"@exodus/wallet-accounts": "^14.
|
|
57
|
+
"@exodus/wallet-accounts": "^14.3.0",
|
|
57
58
|
"@exodus/wallet-compatibility-modes": "^3.2.0",
|
|
58
59
|
"bip39": "^2.6.0",
|
|
59
60
|
"events": "^3.3.0",
|
|
@@ -98,5 +99,5 @@
|
|
|
98
99
|
"msw": "^2.0.0",
|
|
99
100
|
"p-defer": "^4.0.0"
|
|
100
101
|
},
|
|
101
|
-
"gitHead": "
|
|
102
|
+
"gitHead": "12cb48287d504fd96f3256f22ad21b581ee9dbdb"
|
|
102
103
|
}
|
package/src/index.js
CHANGED
|
@@ -10,6 +10,7 @@ import geolocation from '@exodus/geolocation'
|
|
|
10
10
|
import keychain from '@exodus/keychain'
|
|
11
11
|
import locale from '@exodus/locale'
|
|
12
12
|
import pricing from '@exodus/pricing'
|
|
13
|
+
import publicKeyStore from '@exodus/public-key-store'
|
|
13
14
|
import rates from '@exodus/rates-monitor'
|
|
14
15
|
import remoteConfig from '@exodus/remote-config'
|
|
15
16
|
import restoreProgressTracker from '@exodus/restore-progress-tracker'
|
|
@@ -37,6 +38,7 @@ const createExodus = ({ adapters, config, port }) => {
|
|
|
37
38
|
ioc.use(keychain(config.keychain))
|
|
38
39
|
ioc.use(locale())
|
|
39
40
|
ioc.use(pricing())
|
|
41
|
+
ioc.use(publicKeyStore())
|
|
40
42
|
ioc.use(transactionSigner())
|
|
41
43
|
ioc.use(rates())
|
|
42
44
|
ioc.use(remoteConfig())
|