@dynamic-labs/stellar 4.91.4 → 4.91.6

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,20 @@
1
1
 
2
+ ### [4.91.6](https://github.com/dynamic-labs/dynamic-auth/compare/v4.91.5...v4.91.6) (2026-07-03)
3
+
4
+
5
+ ### Bug Fixes
6
+
7
+ * **react-native:** ensure webview loads on cold start ([#11787](https://github.com/dynamic-labs/dynamic-auth/issues/11787)) ([8f3dc8e](https://github.com/dynamic-labs/dynamic-auth/commit/8f3dc8e2a7de06f012ea6e922d4e76aee1c84c1a))
8
+
9
+ ### [4.91.5](https://github.com/dynamic-labs/dynamic-auth/compare/v4.91.4...v4.91.5) (2026-07-02)
10
+
11
+
12
+ ### Bug Fixes
13
+
14
+ * 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))
15
+ * **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))
16
+ * **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))
17
+
2
18
  ### [4.91.4](https://github.com/dynamic-labs/dynamic-auth/compare/v4.91.3...v4.91.4) (2026-07-01)
3
19
 
4
20
 
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.6";
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.6";
3
3
 
4
4
  export { version };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dynamic-labs/stellar",
3
- "version": "4.91.4",
3
+ "version": "4.91.6",
4
4
  "description": "A React SDK for implementing Stellar wallet web3 authentication and authorization to your website.",
5
5
  "author": "Dynamic Labs, Inc.",
6
6
  "license": "MIT",
@@ -21,15 +21,15 @@
21
21
  "@dynamic-labs-sdk/client": "1.12.1",
22
22
  "@dynamic-labs/sdk-api-core": "0.0.1046",
23
23
  "@stellar/stellar-sdk": "14.4.3",
24
- "@dynamic-labs/wallet-connector-core": "4.91.4",
25
- "@dynamic-labs/assert-package-version": "4.91.4",
24
+ "@dynamic-labs/wallet-connector-core": "4.91.6",
25
+ "@dynamic-labs/assert-package-version": "4.91.6",
26
26
  "@lobstrco/signer-extension-api": "2.0.0",
27
27
  "@stellar/freighter-api": "6.0.1",
28
- "@dynamic-labs/logger": "4.91.4",
29
- "@dynamic-labs/types": "4.91.4",
30
- "@dynamic-labs/utils": "4.91.4",
31
- "@dynamic-labs/waas": "4.91.4",
32
- "@dynamic-labs/wallet-book": "4.91.4",
28
+ "@dynamic-labs/logger": "4.91.6",
29
+ "@dynamic-labs/types": "4.91.6",
30
+ "@dynamic-labs/utils": "4.91.6",
31
+ "@dynamic-labs/waas": "4.91.6",
32
+ "@dynamic-labs/wallet-book": "4.91.6",
33
33
  "eventemitter3": "5.0.1"
34
34
  },
35
35
  "peerDependencies": {}
@@ -30,6 +30,7 @@ declare const DynamicWaasStellarConnector_base: (abstract new (...args: any[]) =
30
30
  relayUrl?: string | undefined;
31
31
  baseClientKeysharesRelayApiUrl?: string | undefined;
32
32
  dynamicWaasClient: import("@dynamic-labs-wallet/browser-wallet-client").DynamicWalletClient | undefined;
33
+ revokeSignedSession: (() => void) | undefined;
33
34
  chainName: string;
34
35
  authMode: "cookie" | "header";
35
36
  logger: Logger;
@@ -61,6 +62,9 @@ declare const DynamicWaasStellarConnector_base: (abstract new (...args: any[]) =
61
62
  accountAddress: string;
62
63
  password?: string | undefined;
63
64
  }): Promise<void>;
65
+ createRevocableSignedSessionCallback(): {
66
+ getSignedSessionId: () => Promise<string>;
67
+ };
64
68
  createDynamicWaasClient(traceContext?: import("dist/packages/waas/utils/instrumentation").TraceContext | undefined): Promise<import("@dynamic-labs-wallet/browser-wallet-client").DynamicWalletClient>;
65
69
  getWaasWalletClient(traceContext?: import("dist/packages/waas/utils/instrumentation").TraceContext | undefined, { forceRebuild }?: {
66
70
  forceRebuild?: boolean | undefined;
@@ -80,12 +84,7 @@ declare const DynamicWaasStellarConnector_base: (abstract new (...args: any[]) =
80
84
  thresholdSignatureScheme?: string | undefined;
81
85
  publicAddressCheck?: string | undefined;
82
86
  addressType?: string | undefined;
83
- legacyWalletId?: string | undefined; /**
84
- * Validates that the expected wallet address matches the active wallet
85
- * Updates the active account address if it doesn't match
86
- * @param expectedAddress - The expected wallet address to validate
87
- * @throws {DynamicError} If signed session ID is not available or account is not found
88
- */
87
+ legacyWalletId?: string | undefined;
89
88
  password?: string | undefined;
90
89
  }): Promise<void>;
91
90
  migrateFromFireblocks({ deviceId, jwt, walletPassword, ncwStorage, expectedAddresses, coinTypes, password, }: {
@@ -147,13 +146,6 @@ declare const DynamicWaasStellarConnector_base: (abstract new (...args: any[]) =
147
146
  }): Promise<void>;
148
147
  setPassword({ accountAddress, newPassword, }: {
149
148
  accountAddress: string;
150
- /**
151
- * Internal method to sign a message with MFA token
152
- * @param message - The message to sign
153
- * @returns The signed message as a string
154
- * @throws {DynamicError} If active account address is not set
155
- * @throws {DynamicError} If signed session ID is not available
156
- */
157
149
  newPassword: string;
158
150
  }): Promise<void>;
159
151
  signRawMessage({ accountAddress, message, password, }: {
@@ -178,7 +170,11 @@ declare const DynamicWaasStellarConnector_base: (abstract new (...args: any[]) =
178
170
  errorType: string | undefined;
179
171
  } | {
180
172
  errorCode: string;
181
- errorMessage?: undefined;
173
+ errorMessage?: undefined; /**
174
+ * Signs a Stellar transaction XDR.
175
+ * @param transactionXdr - The XDR-encoded transaction envelope to sign
176
+ * @returns The signed transaction XDR
177
+ */
182
178
  errorType?: undefined;
183
179
  };
184
180
  instrument(message: string, context: import("@dynamic-labs/logger").InstrumentOptions & import("dist/packages/waas/utils/instrumentation").InstrumentContext & Record<string, any>): void;