@exodus/headless 5.0.0-rc.24 → 5.0.0-rc.26

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 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
+ ## [5.0.0-rc.26](https://github.com/ExodusMovement/exodus-hydra/compare/@exodus/headless@5.0.0-rc.25...@exodus/headless@5.0.0-rc.26) (2024-07-22)
7
+
8
+ - update address-provider version to v12.0.0 and updates its usage. config structure has not changed.
9
+
10
+ ## [5.0.0-rc.25](https://github.com/ExodusMovement/exodus-hydra/compare/@exodus/headless@5.0.0-rc.24...@exodus/headless@5.0.0-rc.25) (2024-07-18)
11
+
12
+ ### Features
13
+
14
+ - **headless:** add txlog monitors feature ([#7879](https://github.com/ExodusMovement/exodus-hydra/issues/7879)) ([cc5eaf4](https://github.com/ExodusMovement/exodus-hydra/commit/cc5eaf4fa46b2c1fe29bc4fd485c5adf724739a1))
15
+
6
16
  ## [5.0.0-rc.24](https://github.com/ExodusMovement/exodus-hydra/compare/@exodus/headless@5.0.0-rc.23...@exodus/headless@5.0.0-rc.24) (2024-07-18)
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": "5.0.0-rc.24",
3
+ "version": "5.0.0-rc.26",
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
  "test:types": "run -T tsc --noEmit"
28
28
  },
29
29
  "dependencies": {
30
- "@exodus/address-provider": "^11.3.1",
30
+ "@exodus/address-provider": "^12.0.0",
31
31
  "@exodus/application": "^1.2.3",
32
32
  "@exodus/argo": "^1.3.1",
33
33
  "@exodus/asset-sources": "^1.1.4",
@@ -62,6 +62,7 @@
62
62
  "@exodus/restore-progress-tracker": "^3.3.1",
63
63
  "@exodus/sodium-crypto": "^3.2.0",
64
64
  "@exodus/startup-counter": "^1.0.2",
65
+ "@exodus/tx-log-monitors": "^2.3.0",
65
66
  "@exodus/tx-signer": "^2.3.3",
66
67
  "@exodus/typeforce": "^1.18.1",
67
68
  "@exodus/wallet": "^14.5.2",
@@ -85,7 +86,7 @@
85
86
  "@exodus/crypto-news-monitor": "^5.0.1",
86
87
  "@exodus/currency": "^2.2.0",
87
88
  "@exodus/deferring-storage": "^1.0.1",
88
- "@exodus/ethereum-lib": "^4.5.0",
89
+ "@exodus/ethereum-lib": "^5.0.0",
89
90
  "@exodus/ethereum-meta": "^1.1.0",
90
91
  "@exodus/exodus-pricing-client": "^1.2.0",
91
92
  "@exodus/fetch-factory": "^2.2.0",
@@ -113,5 +114,5 @@
113
114
  "msw": "^2.0.0",
114
115
  "p-defer": "^4.0.0"
115
116
  },
116
- "gitHead": "a76a22c96445bcaa05e18de0e0c323cf9dd04cba"
117
+ "gitHead": "0d3fa0dc23ea70feac852da30ea46fd7fb70e830"
117
118
  }
package/src/index.js CHANGED
@@ -23,6 +23,7 @@ import rates from '@exodus/rates-monitor'
23
23
  import remoteConfig from '@exodus/remote-config'
24
24
  import restoreProgressTracker from '@exodus/restore-progress-tracker'
25
25
  import startupCounter from '@exodus/startup-counter'
26
+ import txLogMonitors from '@exodus/tx-log-monitors'
26
27
  import transactionSigner from '@exodus/tx-signer'
27
28
  import typeforce from '@exodus/typeforce'
28
29
  import wallet from '@exodus/wallet'
@@ -50,7 +51,7 @@ const createExodus = (opts) => {
50
51
 
51
52
  ioc.use(application())
52
53
  ioc.use(errorTracking())
53
- ioc.use(addressProvider({ config: config.addressProvider, debug }))
54
+ ioc.use(addressProvider({ ...config.addressProvider, debug }))
54
55
  ioc.use(assetsFeature(config.assets))
55
56
  ioc.use(availableAssets(config.availableAssets))
56
57
  ioc.use(assetSources(config.assetSources))
@@ -73,6 +74,7 @@ const createExodus = (opts) => {
73
74
  ioc.use(restoreProgressTracker(config.restoreProgressTracker))
74
75
  ioc.use(startupCounter(config.startupCounter))
75
76
  ioc.use(transactionSigner(config.transactionSigner))
77
+ ioc.use(txLogMonitors(config.txLogMonitors))
76
78
  ioc.use(wallet(config.wallet))
77
79
  ioc.use(walletAccounts(config.walletAccounts))
78
80