@injectivelabs/wallet-trezor 1.16.25-alpha.1 → 1.16.25-alpha.2

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.
@@ -16,7 +16,10 @@ const TrezorDerivationPathType = {
16
16
  //#endregion
17
17
  //#region src/strategy/lib.ts
18
18
  async function loadTrezorConnect() {
19
- return (await import("@trezor/connect-web")).default.default;
19
+ console.log("🪵Loading TrezorConnect...");
20
+ const module$1 = await import("@trezor/connect-web");
21
+ console.log("🪵Module:", module$1);
22
+ return module$1.default;
20
23
  }
21
24
 
22
25
  //#endregion
package/dist/esm/index.js CHANGED
@@ -16,7 +16,10 @@ const TrezorDerivationPathType = {
16
16
  //#endregion
17
17
  //#region src/strategy/lib.ts
18
18
  async function loadTrezorConnect() {
19
- return (await import("@trezor/connect-web")).default.default;
19
+ console.log("🪵Loading TrezorConnect...");
20
+ const module = await import("@trezor/connect-web");
21
+ console.log("🪵Module:", module);
22
+ return module.default;
20
23
  }
21
24
 
22
25
  //#endregion
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@injectivelabs/wallet-trezor",
3
3
  "description": "Trezor wallet strategy for use with @injectivelabs/wallet-core.",
4
- "version": "1.16.25-alpha.1",
4
+ "version": "1.16.25-alpha.2",
5
5
  "sideEffects": false,
6
6
  "type": "module",
7
7
  "author": {
@@ -56,10 +56,10 @@
56
56
  "lint": "eslint . --ext .ts,.js"
57
57
  },
58
58
  "dependencies": {
59
- "@injectivelabs/exceptions": "1.16.25-alpha.1",
60
- "@injectivelabs/sdk-ts": "1.16.25-alpha.1",
61
- "@injectivelabs/ts-types": "1.16.25-alpha.1",
62
- "@injectivelabs/wallet-base": "1.16.25-alpha.1",
59
+ "@injectivelabs/exceptions": "1.16.25-alpha.2",
60
+ "@injectivelabs/sdk-ts": "1.16.25-alpha.2",
61
+ "@injectivelabs/ts-types": "1.16.25-alpha.2",
62
+ "@injectivelabs/wallet-base": "1.16.25-alpha.2",
63
63
  "@trezor/connect": "^9.6.4",
64
64
  "@trezor/connect-web": "^9.6.4",
65
65
  "alchemy-sdk": "^3.4.7",
@@ -68,5 +68,5 @@
68
68
  "devDependencies": {
69
69
  "shx": "^0.3.3"
70
70
  },
71
- "gitHead": "e59fe33d170260cc2214f5db7e48e0c7223dc37f"
71
+ "gitHead": "bfa4ecff376de6cb71007524bde7de4f5a8e9de0"
72
72
  }