@mysten/kiosk 0.0.0-experimental-20240701173840 → 0.0.0-experimental-20240701212824

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +2 -2
  2. package/package.json +3 -3
package/CHANGELOG.md CHANGED
@@ -1,13 +1,13 @@
1
1
  # @mysten/kiosk
2
2
 
3
- ## 0.0.0-experimental-20240701173840
3
+ ## 0.0.0-experimental-20240701212824
4
4
 
5
5
  ### Patch Changes
6
6
 
7
7
  - Updated dependencies [06a900c1ab]
8
8
  - Updated dependencies [45877014d1]
9
9
  - Updated dependencies [87d6f75403]
10
- - @mysten/sui@0.0.0-experimental-20240701173840
10
+ - @mysten/sui@0.0.0-experimental-20240701212824
11
11
 
12
12
  ## 0.9.9
13
13
 
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@mysten/kiosk",
3
3
  "author": "Mysten Labs <build@mystenlabs.com>",
4
4
  "description": "Sui Kiosk library",
5
- "version": "0.0.0-experimental-20240701173840",
5
+ "version": "0.0.0-experimental-20240701212824",
6
6
  "license": "Apache-2.0",
7
7
  "type": "commonjs",
8
8
  "main": "./dist/cjs/index.js",
@@ -24,7 +24,7 @@
24
24
  "node": ">=18"
25
25
  },
26
26
  "dependencies": {
27
- "@mysten/sui": "0.0.0-experimental-20240701173840"
27
+ "@mysten/sui": "0.0.0-experimental-20240701212824"
28
28
  },
29
29
  "devDependencies": {
30
30
  "cross-env": "^7.0.3",
@@ -47,6 +47,6 @@
47
47
  "lint": "pnpm run eslint:check && pnpm run prettier:check",
48
48
  "lint:fix": "pnpm run eslint:fix && pnpm run prettier:fix",
49
49
  "test:e2e": "wait-on http://127.0.0.1:9123 -l --timeout 120000 && vitest run e2e",
50
- "prepare:e2e": "cargo build --bin sui-test-validator --bin sui --profile dev && cross-env RUST_LOG=warn,sui=error,anemo_tower=warn,consensus=off cargo run --bin sui-test-validator"
50
+ "prepare:e2e": "cargo build --bin sui --profile dev && cross-env RUST_LOG=warn,sui=error,anemo_tower=warn,consensus=off cargo run --bin sui -- start --with-faucet --force-regenesis"
51
51
  }
52
52
  }