@typemove/sui 1.2.6 → 1.2.7-rc.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/Readme.md +3 -3
- package/package.json +2 -2
package/Readme.md
CHANGED
|
@@ -30,15 +30,15 @@ Use `yarn typemove-sui --help` to see detail description.
|
|
|
30
30
|
A few examples:
|
|
31
31
|
- generate types for an address on mainnet:
|
|
32
32
|
```typescript
|
|
33
|
-
yarn typemove-sui --target-dir
|
|
33
|
+
yarn typemove-sui --target-dir=./src/types --abi-dir=./src/abis 0x1e2b124f746a339b3cf99b9f969393a96594519aafb1d06517aacfeeae20e7a5
|
|
34
34
|
```
|
|
35
35
|
- generate types for local ABI files stored in `./src/abis`:
|
|
36
36
|
```typescript
|
|
37
|
-
yarn typemove-sui --target-dir
|
|
37
|
+
yarn typemove-sui --target-dir=./src/types ./src/abis
|
|
38
38
|
```
|
|
39
39
|
- generate types using local node:
|
|
40
40
|
```typescript
|
|
41
|
-
yarn typemove-sui --network
|
|
41
|
+
yarn typemove-sui --network="http://localhost:8080" 0x48271d39d0b05bd6efca2278f22277d6fcc375504f9839fd73f74ace240861af
|
|
42
42
|
```
|
|
43
43
|
|
|
44
44
|
### Decode Object
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@typemove/sui",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.7-rc.1",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": {
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
"commander": "^11.1.0",
|
|
37
37
|
"prettier": "^3.0.3",
|
|
38
38
|
"radash": "^11.0.0",
|
|
39
|
-
"@typemove/move": "1.2.
|
|
39
|
+
"@typemove/move": "1.2.7-rc.1"
|
|
40
40
|
},
|
|
41
41
|
"url": "https://github.com/sentioxyz/typemove",
|
|
42
42
|
"scripts": {
|