@dynamic-labs/sui-extension 4.29.5 → 4.30.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,24 @@
|
|
|
1
1
|
|
|
2
|
+
## [4.30.0](https://github.com/dynamic-labs/dynamic-auth/compare/v4.29.6...v4.30.0) (2025-09-02)
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
### Features
|
|
6
|
+
|
|
7
|
+
* add BaseAccount wallet support ([#9373](https://github.com/dynamic-labs/dynamic-auth/issues/9373)) ([2d5e601](https://github.com/dynamic-labs/dynamic-auth/commit/2d5e601eeca34653b503302c73da6fbbee98810e))
|
|
8
|
+
* add Spark chain support ([#9430](https://github.com/dynamic-labs/dynamic-auth/issues/9430)) ([c01c31e](https://github.com/dynamic-labs/dynamic-auth/commit/c01c31eed7824871028a731bb5b5ce3004b4d5c7))
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* unlink oauth with 7702 account ([#9431](https://github.com/dynamic-labs/dynamic-auth/issues/9431)) ([0aae4a4](https://github.com/dynamic-labs/dynamic-auth/commit/0aae4a4e27e56083ff1a9e068048461d5d436569))
|
|
14
|
+
|
|
15
|
+
### [4.29.6](https://github.com/dynamic-labs/dynamic-auth/compare/v4.29.5...v4.29.6) (2025-09-01)
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
### Bug Fixes
|
|
19
|
+
|
|
20
|
+
* sync react-native auth state ([#9427](https://github.com/dynamic-labs/dynamic-auth/issues/9427)) ([74e93d6](https://github.com/dynamic-labs/dynamic-auth/commit/74e93d6a5d1186161c3cd15a2be2bc533b6e0d71))
|
|
21
|
+
|
|
2
22
|
### [4.29.5](https://github.com/dynamic-labs/dynamic-auth/compare/v4.29.4...v4.29.5) (2025-08-29)
|
|
3
23
|
|
|
4
24
|
|
package/package.cjs
CHANGED
package/package.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dynamic-labs/sui-extension",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.30.0",
|
|
4
4
|
"main": "./src/index.cjs",
|
|
5
5
|
"module": "./src/index.js",
|
|
6
6
|
"types": "./src/index.d.ts",
|
|
@@ -17,9 +17,10 @@
|
|
|
17
17
|
"@mysten/sui": "1.24.0"
|
|
18
18
|
},
|
|
19
19
|
"dependencies": {
|
|
20
|
-
"@dynamic-labs/assert-package-version": "4.
|
|
21
|
-
"@dynamic-labs/client": "4.
|
|
22
|
-
"@dynamic-labs/message-transport": "4.
|
|
23
|
-
"@dynamic-labs/types": "4.
|
|
20
|
+
"@dynamic-labs/assert-package-version": "4.30.0",
|
|
21
|
+
"@dynamic-labs/client": "4.30.0",
|
|
22
|
+
"@dynamic-labs/message-transport": "4.30.0",
|
|
23
|
+
"@dynamic-labs/types": "4.30.0",
|
|
24
|
+
"@dynamic-labs/webview-messages": "4.30.0"
|
|
24
25
|
}
|
|
25
26
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Wallet, type Extension } from '@dynamic-labs/client';
|
|
2
|
-
import { SuiNetworkName } from '@dynamic-labs/
|
|
2
|
+
import { SuiNetworkName } from '@dynamic-labs/webview-messages';
|
|
3
3
|
import { ISuiSigner } from './types';
|
|
4
4
|
export declare const suiExtensionName = "sui";
|
|
5
5
|
export type ISuiExtension = {
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { Wallet } from '@dynamic-labs/client';
|
|
2
|
-
import { RequestChannel
|
|
2
|
+
import { RequestChannel } from '@dynamic-labs/message-transport';
|
|
3
|
+
import { SuiMessages } from '@dynamic-labs/webview-messages';
|
|
3
4
|
import { ISuiSigner } from '../types';
|
|
4
5
|
type CreateSignerProps = {
|
|
5
6
|
wallet: Wallet;
|
|
@@ -1,7 +1,8 @@
|
|
|
1
|
-
import { RequestChannel
|
|
1
|
+
import { RequestChannel } from '@dynamic-labs/message-transport';
|
|
2
|
+
import { SuiMessages } from '@dynamic-labs/webview-messages';
|
|
2
3
|
type GetChainUrlProps = {
|
|
3
4
|
suiRequestChannel: RequestChannel<SuiMessages>;
|
|
4
5
|
walletId: string;
|
|
5
6
|
};
|
|
6
|
-
export declare const getNetworkName: ({ suiRequestChannel, walletId, }: GetChainUrlProps) => Promise<import("@dynamic-labs/
|
|
7
|
+
export declare const getNetworkName: ({ suiRequestChannel, walletId, }: GetChainUrlProps) => Promise<import("@dynamic-labs/webview-messages").SuiNetworkName>;
|
|
7
8
|
export {};
|