@dynamic-labs/ton 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 +12 -0
- package/package.cjs +1 -1
- package/package.js +1 -1
- package/package.json +10 -10
- package/src/waas/connector/DynamicWaasTonConnector.d.ts +3 -3
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
package/package.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dynamic-labs/ton",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.79.0",
|
|
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",
|
|
@@ -18,15 +18,15 @@
|
|
|
18
18
|
},
|
|
19
19
|
"homepage": "https://www.dynamic.xyz/",
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"@dynamic-labs-sdk/client": "0.
|
|
22
|
-
"@dynamic-labs/assert-package-version": "4.
|
|
23
|
-
"@dynamic-labs/logger": "4.
|
|
24
|
-
"@dynamic-labs/sdk-api-core": "0.0.
|
|
25
|
-
"@dynamic-labs/types": "4.
|
|
26
|
-
"@dynamic-labs/utils": "4.
|
|
27
|
-
"@dynamic-labs/waas": "4.
|
|
28
|
-
"@dynamic-labs/wallet-book": "4.
|
|
29
|
-
"@dynamic-labs/wallet-connector-core": "4.
|
|
21
|
+
"@dynamic-labs-sdk/client": "0.26.2",
|
|
22
|
+
"@dynamic-labs/assert-package-version": "4.79.0",
|
|
23
|
+
"@dynamic-labs/logger": "4.79.0",
|
|
24
|
+
"@dynamic-labs/sdk-api-core": "0.0.956",
|
|
25
|
+
"@dynamic-labs/types": "4.79.0",
|
|
26
|
+
"@dynamic-labs/utils": "4.79.0",
|
|
27
|
+
"@dynamic-labs/waas": "4.79.0",
|
|
28
|
+
"@dynamic-labs/wallet-book": "4.79.0",
|
|
29
|
+
"@dynamic-labs/wallet-connector-core": "4.79.0",
|
|
30
30
|
"@ton/core": "0.62.0",
|
|
31
31
|
"@ton/crypto": "3.3.0",
|
|
32
32
|
"@ton/ton": "16.0.0",
|
|
@@ -63,7 +63,7 @@ declare const DynamicWaasTonConnector_base: (abstract new (...args: any[]) => {
|
|
|
63
63
|
createWalletAccount({ thresholdSignatureScheme, password, bitcoinConfig, }?: {
|
|
64
64
|
thresholdSignatureScheme?: string | undefined;
|
|
65
65
|
password?: string | undefined;
|
|
66
|
-
bitcoinConfig?: import("@dynamic-labs-wallet/
|
|
66
|
+
bitcoinConfig?: import("@dynamic-labs-wallet/core").BitcoinConfig | undefined;
|
|
67
67
|
} | undefined): Promise<{
|
|
68
68
|
chainName: string;
|
|
69
69
|
accountAddress: string;
|
|
@@ -137,10 +137,10 @@ declare const DynamicWaasTonConnector_base: (abstract new (...args: any[]) => {
|
|
|
137
137
|
unlockWallet({ accountAddress, password, }: {
|
|
138
138
|
accountAddress: string;
|
|
139
139
|
password?: string | undefined;
|
|
140
|
-
}): Promise<import("@dynamic-labs-wallet/
|
|
140
|
+
}): Promise<import("@dynamic-labs-wallet/core").GetWalletResponse>;
|
|
141
141
|
getWalletRecoveryState({ accountAddress, }: {
|
|
142
142
|
accountAddress: string;
|
|
143
|
-
}): Promise<import("@dynamic-labs-wallet/
|
|
143
|
+
}): Promise<import("@dynamic-labs-wallet/core").WalletRecoveryState>;
|
|
144
144
|
endSession(reason?: LogoutReason | undefined): Promise<void>;
|
|
145
145
|
getActiveAccountAddress(): Promise<string | undefined>;
|
|
146
146
|
getConnectedAccounts(): Promise<string[]>;
|