@mysten/create-dapp 0.3.60 → 0.4.1

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,5 +1,26 @@
1
1
  # @mysten/create-dapp
2
2
 
3
+ ## 0.4.1
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [3cd4e53]
8
+ - @mysten/sui@1.28.1
9
+ - @mysten/dapp-kit@0.15.7
10
+
11
+ ## 0.4.0
12
+
13
+ ### Minor Changes
14
+
15
+ - 2705dc8: Added a requestSuiFromFaucetV2 and added a deprecation comment on the previous
16
+ requestSuiFromFaucetV0, V1, and status.
17
+
18
+ ### Patch Changes
19
+
20
+ - Updated dependencies [2705dc8]
21
+ - @mysten/sui@1.28.0
22
+ - @mysten/dapp-kit@0.15.6
23
+
3
24
  ## 0.3.60
4
25
 
5
26
  ### 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.3.60",
6
+ "version": "0.4.1",
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.5",
34
- "@mysten/sui": "1.27.1"
33
+ "@mysten/dapp-kit": "0.15.7",
34
+ "@mysten/sui": "1.28.1"
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 (make sure to replace the address with your address):
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