@exodus/hardware-wallets 1.2.0 → 1.2.1

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,12 @@
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
+ ## [1.2.1](https://github.com/ExodusMovement/exodus-hydra/compare/@exodus/hardware-wallets@1.2.0...@exodus/hardware-wallets@1.2.1) (2024-09-13)
7
+
8
+ ### Bug Fixes
9
+
10
+ - dont await sign transaction/message modal ([#9268](https://github.com/ExodusMovement/exodus-hydra/issues/9268)) ([c2e1de9](https://github.com/ExodusMovement/exodus-hydra/commit/c2e1de987c31b2277bcc3cf65d13e11758bd2110))
11
+
6
12
  ## [1.2.0](https://github.com/ExodusMovement/exodus-hydra/compare/@exodus/hardware-wallets@1.1.2...@exodus/hardware-wallets@1.2.0) (2024-08-16)
7
13
 
8
14
  ### Features
@@ -53,7 +53,7 @@ export class HardwareWallets {
53
53
  break;
54
54
  }
55
55
  if (error.name === 'DisconnectedDeviceDuringOperation') {
56
- await this.#requestUserAction({
56
+ this.#requestUserAction({
57
57
  scenario,
58
58
  baseAssetName,
59
59
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@exodus/hardware-wallets",
3
- "version": "1.2.0",
3
+ "version": "1.2.1",
4
4
  "description": "An Exodus SDK feature that provides a high level abstraction for interacting with hardware wallet devices",
5
5
  "author": "Exodus Movement, Inc.",
6
6
  "repository": {
@@ -22,23 +22,24 @@
22
22
  "scripts": {
23
23
  "build": "run -T tsc --build tsconfig.build.json",
24
24
  "clean": "run -T tsc --build --clean",
25
- "lint": "run -T eslint . --ignore-path ../../.gitignore",
25
+ "lint": "run -T eslint .",
26
26
  "lint:fix": "yarn lint --fix",
27
27
  "test": "run -T jest",
28
28
  "prepublishOnly": "yarn run -T build --scope @exodus/hardware-wallets"
29
29
  },
30
30
  "dependencies": {
31
- "@exodus/models": "^11.7.0",
31
+ "@exodus/models": "^12.0.1",
32
32
  "@exodus/wild-emitter": "^1.1.0",
33
33
  "delay": "^5.0.0",
34
34
  "minimalistic-assert": "^1.0.1",
35
35
  "randombytes": "^2.1.0"
36
36
  },
37
37
  "devDependencies": {
38
- "@exodus/atoms": "^8.0.0",
38
+ "@exodus/atoms": "^8.1.1",
39
39
  "@exodus/hw-common": "^2.3.0",
40
40
  "@exodus/logger": "^1.2.2",
41
- "@exodus/public-key-store": "^1.2.2"
41
+ "@exodus/public-key-store": "^1.2.2",
42
+ "@types/randombytes": "^2.0.3"
42
43
  },
43
- "gitHead": "c01ac6f4a75a5af1e5f83c2cba4fe2b34d6617ef"
44
+ "gitHead": "4b5ea436184efe7a8c6017705893436905cd8c2f"
44
45
  }