@dynamic-labs/embedded-wallet-evm 4.18.2 → 4.18.4

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
@@ -1,4 +1,15 @@
1
1
 
2
+ ### [4.18.4](https://github.com/dynamic-labs/dynamic-auth/compare/v4.18.3...v4.18.4) (2025-05-15)
3
+
4
+
5
+ ### Bug Fixes
6
+
7
+ * global connectivity confirmation UI should be forced ([#8658](https://github.com/dynamic-labs/dynamic-auth/issues/8658)) ([b1f437b](https://github.com/dynamic-labs/dynamic-auth/commit/b1f437b40ef748db765dac76687abd8d2668a79d))
8
+ * onekey typo ([#8698](https://github.com/dynamic-labs/dynamic-auth/issues/8698)) ([b1f21bf](https://github.com/dynamic-labs/dynamic-auth/commit/b1f21bfacdb42ccbb68bff5e2dd398308fc3d4c3))
9
+ * use correct chain kernel client for AA SIWE ([#8657](https://github.com/dynamic-labs/dynamic-auth/issues/8657)) ([6dfd677](https://github.com/dynamic-labs/dynamic-auth/commit/6dfd677d804fc40994a5be6b696e6e199ada82d4))
10
+
11
+ ### [4.18.3](https://github.com/dynamic-labs/dynamic-auth/compare/v4.18.2...v4.18.3) (2025-05-12)
12
+
2
13
  ### [4.18.2](https://github.com/dynamic-labs/dynamic-auth/compare/v4.18.1...v4.18.2) (2025-05-09)
3
14
 
4
15
 
package/package.cjs CHANGED
@@ -3,6 +3,6 @@
3
3
 
4
4
  Object.defineProperty(exports, '__esModule', { value: true });
5
5
 
6
- var version = "4.18.2";
6
+ var version = "4.18.4";
7
7
 
8
8
  exports.version = version;
package/package.js CHANGED
@@ -1,4 +1,4 @@
1
1
  'use client'
2
- var version = "4.18.2";
2
+ var version = "4.18.4";
3
3
 
4
4
  export { version };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dynamic-labs/embedded-wallet-evm",
3
- "version": "4.18.2",
3
+ "version": "4.18.4",
4
4
  "description": "A React SDK for implementing wallet web3 authentication and authorization to your website.",
5
5
  "author": "Dynamic Labs, Inc.",
6
6
  "license": "MIT",
@@ -23,16 +23,16 @@
23
23
  "@turnkey/iframe-stamper": "2.0.0",
24
24
  "@turnkey/viem": "0.6.2",
25
25
  "@turnkey/webauthn-stamper": "0.5.0",
26
- "@dynamic-labs/assert-package-version": "4.18.2",
27
- "@dynamic-labs/embedded-wallet": "4.18.2",
28
- "@dynamic-labs/ethereum-core": "4.18.2",
29
- "@dynamic-labs/types": "4.18.2",
30
- "@dynamic-labs/utils": "4.18.2",
31
- "@dynamic-labs/wallet-book": "4.18.2",
32
- "@dynamic-labs/wallet-connector-core": "4.18.2",
33
- "@dynamic-labs/webauthn": "4.18.2"
26
+ "@dynamic-labs/assert-package-version": "4.18.4",
27
+ "@dynamic-labs/embedded-wallet": "4.18.4",
28
+ "@dynamic-labs/ethereum-core": "4.18.4",
29
+ "@dynamic-labs/types": "4.18.4",
30
+ "@dynamic-labs/utils": "4.18.4",
31
+ "@dynamic-labs/wallet-book": "4.18.4",
32
+ "@dynamic-labs/wallet-connector-core": "4.18.4",
33
+ "@dynamic-labs/webauthn": "4.18.4"
34
34
  },
35
35
  "peerDependencies": {
36
- "viem": "^2.21.60"
36
+ "viem": "^2.28.4"
37
37
  }
38
38
  }
@@ -454,6 +454,9 @@ class TurnkeyEVMWalletConnector extends embeddedWallet.TurnkeyWalletConnectorBas
454
454
  getEnabledNetworks() {
455
455
  return this.evmNetworks;
456
456
  }
457
+ isSignAuthorizationSupported() {
458
+ return true;
459
+ }
457
460
  }
458
461
  TurnkeyEVMWalletConnector.lastUsedChainIdStorageKey = 'turnkey-last-used-chain-id';
459
462
 
@@ -65,5 +65,6 @@ export declare class TurnkeyEVMWalletConnector extends TurnkeyWalletConnectorBas
65
65
  createUiTransaction(from: string): Promise<IUITransaction>;
66
66
  getBlockExplorerUrlsForCurrentNetwork(): Promise<string[]>;
67
67
  getEnabledNetworks(): GenericNetwork[];
68
+ isSignAuthorizationSupported(): boolean;
68
69
  }
69
70
  export {};
@@ -450,6 +450,9 @@ class TurnkeyEVMWalletConnector extends TurnkeyWalletConnectorBase {
450
450
  getEnabledNetworks() {
451
451
  return this.evmNetworks;
452
452
  }
453
+ isSignAuthorizationSupported() {
454
+ return true;
455
+ }
453
456
  }
454
457
  TurnkeyEVMWalletConnector.lastUsedChainIdStorageKey = 'turnkey-last-used-chain-id';
455
458