@mysten/create-dapp 0.3.60 → 0.4.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 +13 -0
- package/package.json +3 -3
- package/templates/react-e2e-counter/README.md +1 -11
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# @mysten/create-dapp
|
|
2
2
|
|
|
3
|
+
## 0.4.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 2705dc8: Added a requestSuiFromFaucetV2 and added a deprecation comment on the previous
|
|
8
|
+
requestSuiFromFaucetV0, V1, and status.
|
|
9
|
+
|
|
10
|
+
### Patch Changes
|
|
11
|
+
|
|
12
|
+
- Updated dependencies [2705dc8]
|
|
13
|
+
- @mysten/sui@1.28.0
|
|
14
|
+
- @mysten/dapp-kit@0.15.6
|
|
15
|
+
|
|
3
16
|
## 0.3.60
|
|
4
17
|
|
|
5
18
|
### Patch Changes
|
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
|
+
"version": "0.4.0",
|
|
7
7
|
"license": "Apache-2.0",
|
|
8
8
|
"files": [
|
|
9
9
|
"CHANGELOG.md",
|
|
@@ -30,8 +30,8 @@
|
|
|
30
30
|
"dependencies": {
|
|
31
31
|
"@types/node": "^22.13.17",
|
|
32
32
|
"enquirer": "^2.4.1",
|
|
33
|
-
"@mysten/dapp-kit": "0.15.
|
|
34
|
-
"@mysten/sui": "1.
|
|
33
|
+
"@mysten/dapp-kit": "0.15.6",
|
|
34
|
+
"@mysten/sui": "1.28.0"
|
|
35
35
|
},
|
|
36
36
|
"sideEffects": false,
|
|
37
37
|
"bin": "./bin/index.js",
|
|
@@ -47,17 +47,7 @@ sui client switch --address 0xYOUR_ADDRESS...
|
|
|
47
47
|
```
|
|
48
48
|
|
|
49
49
|
We can ensure we have some Sui in our new wallet by requesting Sui from the
|
|
50
|
-
faucet
|
|
51
|
-
|
|
52
|
-
```bash
|
|
53
|
-
curl --location --request POST 'https://faucet.testnet.sui.io/gas' \
|
|
54
|
-
--header 'Content-Type: application/json' \
|
|
55
|
-
--data-raw '{
|
|
56
|
-
"FixedAmountRequest": {
|
|
57
|
-
"recipient": "<YOUR_ADDRESS>"
|
|
58
|
-
}
|
|
59
|
-
}'
|
|
60
|
-
```
|
|
50
|
+
faucet `https://faucet.sui.io`.
|
|
61
51
|
|
|
62
52
|
### Publishing the move package
|
|
63
53
|
|