@dynamic-labs/waas-svm 4.91.4 → 4.91.5

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,13 @@
1
1
 
2
+ ### [4.91.5](https://github.com/dynamic-labs/dynamic-auth/compare/v4.91.4...v4.91.5) (2026-07-02)
3
+
4
+
5
+ ### Bug Fixes
6
+
7
+ * revoke WaaS signed-session callback on client rebuild to stop iOS nonce race ([#11766](https://github.com/dynamic-labs/dynamic-auth/issues/11766)) ([c895b5d](https://github.com/dynamic-labs/dynamic-auth/commit/c895b5d0987d62a9f5597741dbeae0ec7fedfe5b))
8
+ * **sdk-react-core:** allow sendOneTimeCode to target non-primary chain wallets ([#11777](https://github.com/dynamic-labs/dynamic-auth/issues/11777)) ([63f82af](https://github.com/dynamic-labs/dynamic-auth/commit/63f82af7c52be595bc2948ec88ee9c919ac9275a))
9
+ * **webview-controller:** resolve post-login wallet race in Viem and ZeroDev controllers ([#11774](https://github.com/dynamic-labs/dynamic-auth/issues/11774)) ([95ed26e](https://github.com/dynamic-labs/dynamic-auth/commit/95ed26eee09d9aff5a5af6517ab7e1360ef5f337))
10
+
2
11
  ### [4.91.4](https://github.com/dynamic-labs/dynamic-auth/compare/v4.91.3...v4.91.4) (2026-07-01)
3
12
 
4
13
 
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.4";
6
+ var version = "4.91.5";
7
7
 
8
8
  exports.version = version;
package/package.js CHANGED
@@ -1,4 +1,4 @@
1
1
  'use client'
2
- var version = "4.91.4";
2
+ var version = "4.91.5";
3
3
 
4
4
  export { version };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dynamic-labs/waas-svm",
3
- "version": "4.91.4",
3
+ "version": "4.91.5",
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",
@@ -19,18 +19,18 @@
19
19
  "homepage": "https://www.dynamic.xyz/",
20
20
  "dependencies": {
21
21
  "@dynamic-labs/sdk-api-core": "0.0.1046",
22
- "@dynamic-labs/embedded-wallet-solana": "4.91.4",
22
+ "@dynamic-labs/embedded-wallet-solana": "4.91.5",
23
23
  "@solana/web3.js": "1.98.1",
24
24
  "eventemitter3": "5.0.1",
25
25
  "bs58": "5.0.0",
26
- "@dynamic-labs/assert-package-version": "4.91.4",
27
- "@dynamic-labs/logger": "4.91.4",
28
- "@dynamic-labs/rpc-providers": "4.91.4",
29
- "@dynamic-labs/solana-core": "4.91.4",
30
- "@dynamic-labs/types": "4.91.4",
31
- "@dynamic-labs/utils": "4.91.4",
32
- "@dynamic-labs/waas": "4.91.4",
33
- "@dynamic-labs/wallet-connector-core": "4.91.4"
26
+ "@dynamic-labs/assert-package-version": "4.91.5",
27
+ "@dynamic-labs/logger": "4.91.5",
28
+ "@dynamic-labs/rpc-providers": "4.91.5",
29
+ "@dynamic-labs/solana-core": "4.91.5",
30
+ "@dynamic-labs/types": "4.91.5",
31
+ "@dynamic-labs/utils": "4.91.5",
32
+ "@dynamic-labs/waas": "4.91.5",
33
+ "@dynamic-labs/wallet-connector-core": "4.91.5"
34
34
  },
35
35
  "peerDependencies": {}
36
36
  }
@@ -28,6 +28,10 @@ declare const DynamicWaasSVMConnector_base: (abstract new (...args: any[]) => {
28
28
  relayUrl?: string | undefined;
29
29
  baseClientKeysharesRelayApiUrl?: string | undefined;
30
30
  dynamicWaasClient: import("@dynamic-labs-wallet/browser-wallet-client").DynamicWalletClient | undefined;
31
+ revokeSignedSession: (() => void) | undefined; /**
32
+ * Set a getter that resolves the current SVM gas sponsorship state.
33
+ * Using a getter avoids stale values from initialization race conditions.
34
+ */
31
35
  chainName: string;
32
36
  authMode: "cookie" | "header";
33
37
  logger: Logger;
@@ -43,6 +47,10 @@ declare const DynamicWaasSVMConnector_base: (abstract new (...args: any[]) => {
43
47
  scope: TokenScope;
44
48
  }) => Promise<string | undefined>): void;
45
49
  setGetWalletPasswordFunction(getWalletPassword: import("@dynamic-labs/wallet-connector-core").GetWalletPasswordFn): void;
50
+ /**
51
+ * Sponsor a transaction if gas sponsorship is enabled and the tx is unsigned.
52
+ * Falls back to original transaction on error.
53
+ */
46
54
  getPasswordIfNeeded({ accountAddress, }: {
47
55
  accountAddress: string;
48
56
  }): Promise<string | undefined>;
@@ -59,6 +67,9 @@ declare const DynamicWaasSVMConnector_base: (abstract new (...args: any[]) => {
59
67
  accountAddress: string;
60
68
  password?: string | undefined;
61
69
  }): Promise<void>;
70
+ createRevocableSignedSessionCallback(): {
71
+ getSignedSessionId: () => Promise<string>;
72
+ };
62
73
  createDynamicWaasClient(traceContext?: import("dist/packages/waas/utils/instrumentation").TraceContext | undefined): Promise<import("@dynamic-labs-wallet/browser-wallet-client").DynamicWalletClient>;
63
74
  getWaasWalletClient(traceContext?: import("dist/packages/waas/utils/instrumentation").TraceContext | undefined, { forceRebuild }?: {
64
75
  forceRebuild?: boolean | undefined;