@dynamic-labs/stellar 4.78.1 → 4.79.0

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,16 @@
1
1
 
2
+ ## [4.79.0](https://github.com/dynamic-labs/dynamic-auth/compare/v4.78.1...v4.79.0) (2026-04-30)
3
+
4
+
5
+ ### Features
6
+
7
+ * **sdk-react-core:** two-layer Google Drive backup access defense [DYNT-754] ([#11069](https://github.com/dynamic-labs/dynamic-auth/issues/11069)) ([1ff8b83](https://github.com/dynamic-labs/dynamic-auth/commit/1ff8b83f9c7ba077c586513a250f6aed114e4b07))
8
+
9
+
10
+ ### Bug Fixes
11
+
12
+ * **solana-core,sui-core:** prevent RangeError on send balance ([#11071](https://github.com/dynamic-labs/dynamic-auth/issues/11071)) ([21f5f97](https://github.com/dynamic-labs/dynamic-auth/commit/21f5f9724c788053774ce5eaa19f073af9a33d27))
13
+
2
14
  ### [4.78.1](https://github.com/dynamic-labs/dynamic-auth/compare/v4.78.0...v4.78.1) (2026-04-29)
3
15
 
4
16
 
package/package.cjs CHANGED
@@ -3,6 +3,6 @@
3
3
 
4
4
  Object.defineProperty(exports, '__esModule', { value: true });
5
5
 
6
- var version = "4.78.1";
6
+ var version = "4.79.0";
7
7
 
8
8
  exports.version = version;
package/package.js CHANGED
@@ -1,4 +1,4 @@
1
1
  'use client'
2
- var version = "4.78.1";
2
+ var version = "4.79.0";
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.78.1",
3
+ "version": "4.79.0",
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",
@@ -18,18 +18,18 @@
18
18
  },
19
19
  "homepage": "https://www.dynamic.xyz/",
20
20
  "dependencies": {
21
- "@dynamic-labs-sdk/client": "0.24.0",
22
- "@dynamic-labs/sdk-api-core": "0.0.927",
21
+ "@dynamic-labs-sdk/client": "0.26.2",
22
+ "@dynamic-labs/sdk-api-core": "0.0.956",
23
23
  "@stellar/stellar-sdk": "14.4.3",
24
- "@dynamic-labs/wallet-connector-core": "4.78.1",
25
- "@dynamic-labs/assert-package-version": "4.78.1",
24
+ "@dynamic-labs/wallet-connector-core": "4.79.0",
25
+ "@dynamic-labs/assert-package-version": "4.79.0",
26
26
  "@lobstrco/signer-extension-api": "2.0.0",
27
27
  "@stellar/freighter-api": "6.0.1",
28
- "@dynamic-labs/logger": "4.78.1",
29
- "@dynamic-labs/types": "4.78.1",
30
- "@dynamic-labs/utils": "4.78.1",
31
- "@dynamic-labs/waas": "4.78.1",
32
- "@dynamic-labs/wallet-book": "4.78.1",
28
+ "@dynamic-labs/logger": "4.79.0",
29
+ "@dynamic-labs/types": "4.79.0",
30
+ "@dynamic-labs/utils": "4.79.0",
31
+ "@dynamic-labs/waas": "4.79.0",
32
+ "@dynamic-labs/wallet-book": "4.79.0",
33
33
  "eventemitter3": "5.0.1"
34
34
  },
35
35
  "peerDependencies": {}
@@ -62,7 +62,7 @@ declare const DynamicWaasStellarConnector_base: (abstract new (...args: any[]) =
62
62
  createWalletAccount({ thresholdSignatureScheme, password, bitcoinConfig, }?: {
63
63
  thresholdSignatureScheme?: string | undefined;
64
64
  password?: string | undefined;
65
- bitcoinConfig?: import("@dynamic-labs-wallet/browser-wallet-client").BitcoinConfig | undefined;
65
+ bitcoinConfig?: import("@dynamic-labs-wallet/core").BitcoinConfig | undefined;
66
66
  } | undefined): Promise<{
67
67
  chainName: string;
68
68
  accountAddress: string;
@@ -136,10 +136,10 @@ declare const DynamicWaasStellarConnector_base: (abstract new (...args: any[]) =
136
136
  unlockWallet({ accountAddress, password, }: {
137
137
  accountAddress: string;
138
138
  password?: string | undefined;
139
- }): Promise<import("@dynamic-labs-wallet/browser-wallet-client").GetWalletResponse>;
139
+ }): Promise<import("@dynamic-labs-wallet/core").GetWalletResponse>;
140
140
  getWalletRecoveryState({ accountAddress, }: {
141
141
  accountAddress: string;
142
- }): Promise<import("@dynamic-labs-wallet/browser-wallet-client").WalletRecoveryState>;
142
+ }): Promise<import("@dynamic-labs-wallet/core").WalletRecoveryState>;
143
143
  endSession(reason?: LogoutReason | undefined): Promise<void>;
144
144
  getActiveAccountAddress(): Promise<string | undefined>;
145
145
  getConnectedAccounts(): Promise<string[]>;