@exodus/hardware-wallets 1.3.0 → 1.4.0

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.4.0](https://github.com/ExodusMovement/exodus-hydra/compare/@exodus/hardware-wallets@1.3.0...@exodus/hardware-wallets@1.4.0) (2024-10-07)
7
+
8
+ ### Features
9
+
10
+ - make hardware-wallets public ([#9811](https://github.com/ExodusMovement/exodus-hydra/issues/9811)) ([2c7e86d](https://github.com/ExodusMovement/exodus-hydra/commit/2c7e86d39d400da91f42ae57549cfca840d292ab))
11
+
6
12
  ## [1.3.0](https://github.com/ExodusMovement/exodus-hydra/compare/@exodus/hardware-wallets@1.2.1...@exodus/hardware-wallets@1.3.0) (2024-09-19)
7
13
 
8
14
  ### Features
package/lib/index.d.ts CHANGED
@@ -34,6 +34,7 @@ declare const hardwareWallets: () => {
34
34
  readonly type: "module";
35
35
  readonly factory: (opts: import("./module/hardware-wallets.js").Dependencies) => import("./module/hardware-wallets.js").HardwareWallets;
36
36
  readonly dependencies: readonly ["assetsModule", "logger", "ledgerDiscovery", "userInterface", "publicKeyStore", "wallet", "walletAccountsAtom", "walletAccounts"];
37
+ readonly public: true;
37
38
  };
38
39
  }];
39
40
  };
@@ -3,7 +3,7 @@ import Emitter from '@exodus/wild-emitter';
3
3
  import type { HardwareSignerProvider, CanAccessAssetParams, CreateParams, StoreSyncedKeysParams, ScanParams, SyncParams, EnsureApplicationIsOpenedParams, SignTransactionParams, ScanResult, SyncedKeysId, GetAddressParams, RequireDeviceForParams } from './interfaces.js';
4
4
  import type { HardwareWalletDiscovery, SignMessageParams } from '@exodus/hw-common';
5
5
  import type { Atom } from '@exodus/atoms';
6
- import type { IPublicKeyStore } from '@exodus/public-key-store';
6
+ import type { IPublicKeyStore } from '@exodus/public-key-provider/lib/module/store/types';
7
7
  import type { Logger } from '@exodus/logger';
8
8
  export type Dependencies = {
9
9
  assetsModule: any;
@@ -47,5 +47,6 @@ declare const hardwareWalletsModuleDefinition: {
47
47
  readonly type: "module";
48
48
  readonly factory: (opts: Dependencies) => HardwareWallets;
49
49
  readonly dependencies: readonly ["assetsModule", "logger", "ledgerDiscovery", "userInterface", "publicKeyStore", "wallet", "walletAccountsAtom", "walletAccounts"];
50
+ readonly public: true;
50
51
  };
51
52
  export default hardwareWalletsModuleDefinition;
@@ -332,5 +332,6 @@ const hardwareWalletsModuleDefinition = {
332
332
  'walletAccountsAtom',
333
333
  'walletAccounts',
334
334
  ],
335
+ public: true,
335
336
  };
336
337
  export default hardwareWalletsModuleDefinition;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@exodus/hardware-wallets",
3
- "version": "1.3.0",
3
+ "version": "1.4.0",
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": {
@@ -35,11 +35,13 @@
35
35
  "randombytes": "^2.1.0"
36
36
  },
37
37
  "devDependencies": {
38
- "@exodus/atoms": "^8.1.1",
39
- "@exodus/hw-common": "^2.3.0",
38
+ "@exodus/atoms": "^9.0.0",
39
+ "@exodus/dependency-types": "^2.1.0",
40
+ "@exodus/hw-common": "^2.5.0",
41
+ "@exodus/key-identifier": "^1.3.0",
40
42
  "@exodus/logger": "^1.2.2",
41
- "@exodus/public-key-store": "^1.2.2",
43
+ "@exodus/public-key-provider": "^3.0.0",
42
44
  "@types/randombytes": "^2.0.3"
43
45
  },
44
- "gitHead": "758ea1b22f91994c5982c19071ff1f80f63e48be"
46
+ "gitHead": "c60b8443608e3f1d4673fff692f4aa03b816badd"
45
47
  }