@dynamic-labs/embedded-wallet-evm 4.91.2 → 4.91.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,24 @@
1
1
 
2
+ ### [4.91.4](https://github.com/dynamic-labs/dynamic-auth/compare/v4.91.3...v4.91.4) (2026-07-01)
3
+
4
+
5
+ ### Bug Fixes
6
+
7
+ * conditionally use /op/ route for AA transactions based on block explorer support ([#11628](https://github.com/dynamic-labs/dynamic-auth/issues/11628)) ([95822dc](https://github.com/dynamic-labs/dynamic-auth/commit/95822dc0edbcd739afe870f0b3881555fdb17eb6))
8
+ * require error codes in all SDK error classes ([#11761](https://github.com/dynamic-labs/dynamic-auth/issues/11761)) ([5744811](https://github.com/dynamic-labs/dynamic-auth/commit/5744811efdd1e415aaf51eec5b3300b323ec1347))
9
+
10
+ ### [4.91.3](https://github.com/dynamic-labs/dynamic-auth/compare/v4.91.2...v4.91.3) (2026-06-30)
11
+
12
+
13
+ ### Bug Fixes
14
+
15
+ * **bitcoin:** detect late-registering wallet-standard wallets (DYNT-1210) ([#11747](https://github.com/dynamic-labs/dynamic-auth/issues/11747)) ([17809f6](https://github.com/dynamic-labs/dynamic-auth/commit/17809f6e811fe101367cc31a2d899a8d0b0d107e))
16
+ * fetch onramp providers lazily instead of eagerly on mount ([#11767](https://github.com/dynamic-labs/dynamic-auth/issues/11767)) ([3ee6708](https://github.com/dynamic-labs/dynamic-auth/commit/3ee67087142ae1942f865e0ab37b7108700b3327))
17
+ * **iframe-setup:** sync parent URL to iframe on pushState/replaceState ([#11751](https://github.com/dynamic-labs/dynamic-auth/issues/11751)) ([c8be3af](https://github.com/dynamic-labs/dynamic-auth/commit/c8be3afc301f77b349f23398bed940ce40f93b73))
18
+ * **nonce:** fetch nonce on demand when missing before wallet verification ([#11753](https://github.com/dynamic-labs/dynamic-auth/issues/11753)) ([4f01a21](https://github.com/dynamic-labs/dynamic-auth/commit/4f01a21b6081c852f32868c8a5e04d70aaf280a2)), closes [#1](https://github.com/dynamic-labs/dynamic-auth/issues/1)
19
+ * **react-native-extension:** arm loading timer before setUrl to cover pre-onLoadStart gap ([#11764](https://github.com/dynamic-labs/dynamic-auth/issues/11764)) ([31f2015](https://github.com/dynamic-labs/dynamic-auth/commit/31f20151a4b59279f9c133b723e50de771b06436))
20
+ * **webview-controller:** unwrap ZeroDev smart wallet for native gasless ([#11758](https://github.com/dynamic-labs/dynamic-auth/issues/11758)) ([989714e](https://github.com/dynamic-labs/dynamic-auth/commit/989714e414556868c8e0c54401aac1ed7354331b))
21
+
2
22
  ### [4.91.2](https://github.com/dynamic-labs/dynamic-auth/compare/v4.91.1...v4.91.2) (2026-06-26)
3
23
 
4
24
 
package/package.cjs CHANGED
@@ -3,6 +3,6 @@
3
3
 
4
4
  Object.defineProperty(exports, '__esModule', { value: true });
5
5
 
6
- var version = "4.91.2";
6
+ var version = "4.91.4";
7
7
 
8
8
  exports.version = version;
package/package.js CHANGED
@@ -1,4 +1,4 @@
1
1
  'use client'
2
- var version = "4.91.2";
2
+ var version = "4.91.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.91.2",
3
+ "version": "4.91.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,14 +23,14 @@
23
23
  "@turnkey/iframe-stamper": "2.5.0",
24
24
  "@turnkey/viem": "0.13.0",
25
25
  "@turnkey/webauthn-stamper": "0.5.1",
26
- "@dynamic-labs/assert-package-version": "4.91.2",
27
- "@dynamic-labs/embedded-wallet": "4.91.2",
28
- "@dynamic-labs/ethereum-core": "4.91.2",
29
- "@dynamic-labs/types": "4.91.2",
30
- "@dynamic-labs/utils": "4.91.2",
31
- "@dynamic-labs/wallet-book": "4.91.2",
32
- "@dynamic-labs/wallet-connector-core": "4.91.2",
33
- "@dynamic-labs/webauthn": "4.91.2"
26
+ "@dynamic-labs/assert-package-version": "4.91.4",
27
+ "@dynamic-labs/embedded-wallet": "4.91.4",
28
+ "@dynamic-labs/ethereum-core": "4.91.4",
29
+ "@dynamic-labs/types": "4.91.4",
30
+ "@dynamic-labs/utils": "4.91.4",
31
+ "@dynamic-labs/wallet-book": "4.91.4",
32
+ "@dynamic-labs/wallet-connector-core": "4.91.4",
33
+ "@dynamic-labs/webauthn": "4.91.4"
34
34
  },
35
35
  "peerDependencies": {
36
36
  "viem": "^2.45.3"
@@ -105,7 +105,7 @@ class TurnkeyEVMWalletConnector extends embeddedWallet.TurnkeyWalletConnectorBas
105
105
  if (!isWalletActive) {
106
106
  const targetActiveAccount = (_b = this.verifiedCredentials) === null || _b === void 0 ? void 0 : _b.find((vc) => (vc === null || vc === void 0 ? void 0 : vc.address) === expectedAddress);
107
107
  if (!targetActiveAccount) {
108
- throw new utils.DynamicError('Account not found');
108
+ throw new utils.DynamicError('Account not found', 'account_not_found');
109
109
  }
110
110
  this.verifiedCredential = targetActiveAccount;
111
111
  this.refreshTurnkeyAccount();
@@ -454,7 +454,7 @@ class TurnkeyEVMWalletConnector extends embeddedWallet.TurnkeyWalletConnectorBas
454
454
  const walletClient = this.getWalletClient();
455
455
  const publicClient = yield this.getPublicClient();
456
456
  if (!publicClient || !walletClient) {
457
- throw new utils.DynamicError('No public client available');
457
+ throw new utils.DynamicError('No public client available', 'no_public_client_available');
458
458
  }
459
459
  return ethereumCore.createViemUiTransaction({ from, publicClient, walletClient });
460
460
  });
@@ -101,7 +101,7 @@ class TurnkeyEVMWalletConnector extends TurnkeyWalletConnectorBase {
101
101
  if (!isWalletActive) {
102
102
  const targetActiveAccount = (_b = this.verifiedCredentials) === null || _b === void 0 ? void 0 : _b.find((vc) => (vc === null || vc === void 0 ? void 0 : vc.address) === expectedAddress);
103
103
  if (!targetActiveAccount) {
104
- throw new DynamicError('Account not found');
104
+ throw new DynamicError('Account not found', 'account_not_found');
105
105
  }
106
106
  this.verifiedCredential = targetActiveAccount;
107
107
  this.refreshTurnkeyAccount();
@@ -450,7 +450,7 @@ class TurnkeyEVMWalletConnector extends TurnkeyWalletConnectorBase {
450
450
  const walletClient = this.getWalletClient();
451
451
  const publicClient = yield this.getPublicClient();
452
452
  if (!publicClient || !walletClient) {
453
- throw new DynamicError('No public client available');
453
+ throw new DynamicError('No public client available', 'no_public_client_available');
454
454
  }
455
455
  return createViemUiTransaction({ from, publicClient, walletClient });
456
456
  });