@exodus/headless 2.0.0-alpha.72 → 2.0.0-alpha.74

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,19 @@
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.74](https://github.com/ExodusMovement/exodus-hydra/compare/@exodus/headless@2.0.0-alpha.73...@exodus/headless@2.0.0-alpha.74) (2023-07-17)
7
+
8
+ ### Features
9
+
10
+ - bump wallet deps in headless ([#2675](https://github.com/ExodusMovement/exodus-hydra/issues/2675)) ([3b8eb61](https://github.com/ExodusMovement/exodus-hydra/commit/3b8eb61ba73b7d1ee50eb8cc54ac60f7763645f1))
11
+ - move fees asset load to start event ([#2611](https://github.com/ExodusMovement/exodus-hydra/issues/2611)) ([2575ba6](https://github.com/ExodusMovement/exodus-hydra/commit/2575ba6a07c58f86cf344ab0f807377c13002d70))
12
+
13
+ ## [2.0.0-alpha.73](https://github.com/ExodusMovement/exodus-hydra/compare/@exodus/headless@2.0.0-alpha.72...@exodus/headless@2.0.0-alpha.73) (2023-07-17)
14
+
15
+ ### Bug Fixes
16
+
17
+ - restore-plugin and restore-progress-tracker ([#2642](https://github.com/ExodusMovement/exodus-hydra/issues/2642)) ([d7f704f](https://github.com/ExodusMovement/exodus-hydra/commit/d7f704f877651ffa9eb087476c5ba8322caf2f0e))
18
+
6
19
  ## [2.0.0-alpha.72](https://github.com/ExodusMovement/exodus-hydra/compare/@exodus/headless@2.0.0-alpha.71...@exodus/headless@2.0.0-alpha.72) (2023-07-14)
7
20
 
8
21
  **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.72",
3
+ "version": "2.0.0-alpha.74",
4
4
  "description": "The platform-agnostic Exodus wallet SDK",
5
5
  "author": "Exodus Movement Inc.",
6
6
  "main": "src/index.js",
@@ -8,7 +8,7 @@
8
8
  "type": "git",
9
9
  "url": "git+https://github.com/ExodusMovement/exodus-hydra.git"
10
10
  },
11
- "homepage": "https://github.com/ExodusMovement/exodus-hydra/tree/master/modules/headless",
11
+ "homepage": "https://github.com/ExodusMovement/exodus-hydra/tree/master/sdks/headless",
12
12
  "license": "UNLICENSED",
13
13
  "bugs": {
14
14
  "url": "https://github.com/ExodusMovement/exodus-hydra/issues?q=is%3Aissue+is%3Aopen+label%3Aheadless"
@@ -34,7 +34,7 @@
34
34
  "@exodus/basic-utils": "^2.0.0",
35
35
  "@exodus/blockchain-metadata": "^9.0.0",
36
36
  "@exodus/config": "^7.0.0",
37
- "@exodus/dependency-injection": "^2.0.0",
37
+ "@exodus/dependency-injection": "^2.0.1",
38
38
  "@exodus/dependency-preprocessors": "^2.8.2",
39
39
  "@exodus/enabled-assets": "^6.0.2",
40
40
  "@exodus/exodus-pricing-client": "^1.2.0",
@@ -48,10 +48,10 @@
48
48
  "@exodus/market-history": "^5.0.0",
49
49
  "@exodus/module": "^1.0.0",
50
50
  "@exodus/rates-monitor": "^2.0.1",
51
- "@exodus/restore-progress-tracker": "^2.0.0",
52
- "@exodus/wallet": "^7.0.0",
51
+ "@exodus/restore-progress-tracker": "^2.0.1",
52
+ "@exodus/wallet": "^8.0.0",
53
53
  "@exodus/wallet-accounts": "^10.1.0",
54
- "@exodus/wallet-compatibility-modes": "^2.0.0",
54
+ "@exodus/wallet-compatibility-modes": "^3.0.0",
55
55
  "bip39": "^2.6.0",
56
56
  "events": "^3.3.0",
57
57
  "lodash": "npm:@exodus/lodash@^4.17.21-exodus.2",
@@ -90,5 +90,5 @@
90
90
  "nock": "^13.3.1",
91
91
  "p-defer": "^4.0.0"
92
92
  },
93
- "gitHead": "57ba73d4802289d5df719869280dd32ad03c85ba"
93
+ "gitHead": "44161373f548a2c83320d53348f39d4215bd62ad"
94
94
  }
@@ -1,5 +1,5 @@
1
1
  const createFeesLifecyclePlugin = ({ feeMonitors, port }) => {
2
- feeMonitors.on('fees-load', () => port.emit('fees-load', feeMonitors.getAllFeeData()))
2
+ feeMonitors.on('fees-load', (payload) => port.emit('fees-load', payload))
3
3
  feeMonitors.on('fees-update', (payload) => port.emit('fees-update', payload))
4
4
 
5
5
  const onUnlock = () => {
@@ -9,10 +9,11 @@ const createFeesLifecyclePlugin = ({ feeMonitors, port }) => {
9
9
  return { onUnlock }
10
10
  }
11
11
 
12
- // eslint-disable-next-line @exodus/export-default/named
13
- export default {
12
+ const feesLifecyclePluginDefinition = {
14
13
  id: 'feesLifecyclePlugin',
15
14
  type: 'plugin',
16
15
  factory: createFeesLifecyclePlugin,
17
16
  dependencies: ['feeMonitors', 'port'],
18
17
  }
18
+
19
+ export default feesLifecyclePluginDefinition