@0xobelisk/sui-cli 1.1.5 → 1.1.6
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 +0 -2
- package/dist/dubhe.js.map +1 -1
- package/package.json +11 -7
- package/src/commands/build.ts +49 -49
- package/src/commands/call.ts +71 -71
- package/src/commands/checkBalance.ts +20 -20
- package/src/commands/configStore.ts +31 -35
- package/src/commands/faucet.ts +63 -71
- package/src/commands/generateKey.ts +25 -25
- package/src/commands/hello.ts +5 -5
- package/src/commands/index.ts +15 -15
- package/src/commands/indexer.ts +41 -46
- package/src/commands/localnode.ts +13 -13
- package/src/commands/publish.ts +35 -39
- package/src/commands/query.ts +70 -70
- package/src/commands/schemagen.ts +26 -26
- package/src/commands/test.ts +37 -37
- package/src/commands/upgrade.ts +29 -29
- package/src/commands/watch.ts +12 -12
- package/src/dubhe.ts +14 -12
- package/src/modules.d.ts +2 -2
- package/src/utils/callHandler.ts +117 -122
- package/src/utils/checkBalance.ts +25 -33
- package/src/utils/errors.ts +28 -28
- package/src/utils/generateAccount.ts +76 -91
- package/src/utils/indexerHandler.ts +183 -151
- package/src/utils/printDubhe.ts +1 -1
- package/src/utils/publishHandler.ts +322 -371
- package/src/utils/queryStorage.ts +126 -126
- package/src/utils/startNode.ts +99 -111
- package/src/utils/storeConfig.ts +33 -45
- package/src/utils/upgradeHandler.ts +208 -234
- package/src/utils/utils.ts +150 -176
package/README.md
CHANGED
|
@@ -4,7 +4,6 @@ The Dubhe CLI is used for building and developing a Dubhe project.
|
|
|
4
4
|
|
|
5
5
|
It comes with
|
|
6
6
|
|
|
7
|
-
|
|
8
7
|
1. `schemagen`: Autogenerate Dubhe schemas based on the store schemas config file
|
|
9
8
|
2. `publish`: Deploy your own project on the specified sui network.
|
|
10
9
|
3. `upgrade`: Upgrade your own project on the specified sui network.
|
|
@@ -55,7 +54,6 @@ dubhe publish --network testnet
|
|
|
55
54
|
dubhe publish --network mainnet
|
|
56
55
|
```
|
|
57
56
|
|
|
58
|
-
|
|
59
57
|
### `upgrade`
|
|
60
58
|
|
|
61
59
|
Upgrade Dubhe contract project.
|