@mysten/create-dapp 0.6.3 → 0.6.4
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
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"author": "Mysten Labs <build@mystenlabs.com>",
|
|
4
4
|
"description": "A CLI for creating new Sui dApps",
|
|
5
5
|
"homepage": "https://sdk.mystenlabs.com",
|
|
6
|
-
"version": "0.6.
|
|
6
|
+
"version": "0.6.4",
|
|
7
7
|
"license": "Apache-2.0",
|
|
8
8
|
"files": [
|
|
9
9
|
"CHANGELOG.md",
|
|
@@ -33,9 +33,9 @@
|
|
|
33
33
|
"dependencies": {
|
|
34
34
|
"@types/node": "^25.0.8",
|
|
35
35
|
"enquirer": "^2.4.1",
|
|
36
|
-
"@mysten/codegen": "^0.8.
|
|
37
|
-
"@mysten/dapp-kit-react": "^2.0.
|
|
38
|
-
"@mysten/sui": "^2.
|
|
36
|
+
"@mysten/codegen": "^0.8.4",
|
|
37
|
+
"@mysten/dapp-kit-react": "^2.0.1",
|
|
38
|
+
"@mysten/sui": "^2.15.0"
|
|
39
39
|
},
|
|
40
40
|
"sideEffects": false,
|
|
41
41
|
"bin": "./bin/index.js",
|
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
import {
|
|
2
2
|
bcs,
|
|
3
|
-
BcsType,
|
|
4
|
-
TypeTag,
|
|
3
|
+
type BcsType,
|
|
4
|
+
type TypeTag,
|
|
5
5
|
TypeTagSerializer,
|
|
6
6
|
BcsStruct,
|
|
7
7
|
BcsEnum,
|
|
8
8
|
BcsTuple,
|
|
9
9
|
} from "@mysten/sui/bcs";
|
|
10
10
|
import { normalizeSuiAddress } from "@mysten/sui/utils";
|
|
11
|
-
import { TransactionArgument, isArgument } from "@mysten/sui/transactions";
|
|
12
|
-
import { ClientWithCoreApi, SuiClientTypes } from "@mysten/sui/client";
|
|
11
|
+
import { type TransactionArgument, isArgument } from "@mysten/sui/transactions";
|
|
12
|
+
import { type ClientWithCoreApi, type SuiClientTypes } from "@mysten/sui/client";
|
|
13
13
|
|
|
14
14
|
const MOVE_STDLIB_ADDRESS = normalizeSuiAddress("0x1");
|
|
15
15
|
const SUI_FRAMEWORK_ADDRESS = normalizeSuiAddress("0x2");
|