@typemove/sui 1.0.0-rc.24 → 1.0.0-rc.26
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/Readme.md +1 -1
- package/codegen/package.json +5 -0
- package/package.json +6 -2
package/Readme.md
CHANGED
|
@@ -94,7 +94,7 @@ const decodedObjects = await coder.getDynamicFields(
|
|
|
94
94
|
console.log(decodedObjects[0].value.info.delivery_info?.price)
|
|
95
95
|
```
|
|
96
96
|
IDE could infer result type correctly.
|
|
97
|
-

|
|
97
|
+

|
|
98
98
|
|
|
99
99
|
### Building transaction
|
|
100
100
|
```typescript
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@typemove/sui",
|
|
3
|
-
"version": "1.0.0-rc.
|
|
3
|
+
"version": "1.0.0-rc.26",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": {
|
|
@@ -11,6 +11,10 @@
|
|
|
11
11
|
"./builtin": {
|
|
12
12
|
"import": "./dist/esm/builtin/index.js",
|
|
13
13
|
"require": "./dist/cjs/builtin/index.js"
|
|
14
|
+
},
|
|
15
|
+
"./codgen": {
|
|
16
|
+
"import": "./dist/esm/codgen/index.js",
|
|
17
|
+
"require": "./dist/cjs/codgen/index.js"
|
|
14
18
|
}
|
|
15
19
|
},
|
|
16
20
|
"main": "./dist/cjs/index.js",
|
|
@@ -30,7 +34,7 @@
|
|
|
30
34
|
"@mysten/sui.js": "^0.39.0",
|
|
31
35
|
"chalk": "^5.2.0",
|
|
32
36
|
"radash": "^11.0.0",
|
|
33
|
-
"@typemove/move": "1.0.0-rc.
|
|
37
|
+
"@typemove/move": "1.0.0-rc.26"
|
|
34
38
|
},
|
|
35
39
|
"url": "https://github.com/sentioxyz/typemove",
|
|
36
40
|
"scripts": {
|