@settlemint/sdk-cli 0.9.3-prc4848968 → 0.9.3-prde37a53b
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 +13 -3
- package/dist/cli.js +4203 -3581
- package/dist/cli.js.map +15 -13
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -43,7 +43,7 @@
|
|
|
43
43
|
- [Generating code for your dApp](#generating-code-for-your-dapp)
|
|
44
44
|
- [Start your dApp in development mode](#start-your-dapp-in-development-mode)
|
|
45
45
|
- [Creating a new project from a smart contract template](#creating-a-new-project-from-a-smart-contract-template)
|
|
46
|
-
- [Testing your smart contracts
|
|
46
|
+
- [Testing your smart contracts](#testing-your-smart-contracts)
|
|
47
47
|
- [Deploying your smart contracts and subgraphs](#deploying-your-smart-contracts-and-subgraphs)
|
|
48
48
|
- [API Reference](#api-reference)
|
|
49
49
|
- [Contributing](#contributing)
|
|
@@ -186,7 +186,17 @@ settlemint codegen
|
|
|
186
186
|
#### Start your dApp in development mode
|
|
187
187
|
|
|
188
188
|
```bash
|
|
189
|
+
# bun
|
|
189
190
|
bun run dev
|
|
191
|
+
|
|
192
|
+
# npm
|
|
193
|
+
npm run dev
|
|
194
|
+
|
|
195
|
+
# yarn
|
|
196
|
+
yarn dev
|
|
197
|
+
|
|
198
|
+
# pnpm
|
|
199
|
+
pnpm dev
|
|
190
200
|
```
|
|
191
201
|
|
|
192
202
|
### Creating a new project from a smart contract template
|
|
@@ -197,7 +207,7 @@ To create a new project from a smart contract template, use the `create` command
|
|
|
197
207
|
settlemint scs create --project-name <project-name> --use-case <use-case-name>
|
|
198
208
|
```
|
|
199
209
|
|
|
200
|
-
#### Testing your smart contracts
|
|
210
|
+
#### Testing your smart contracts
|
|
201
211
|
|
|
202
212
|
To test your smart contracts, you can use the `test` command.
|
|
203
213
|
|
|
@@ -221,7 +231,7 @@ settlemint scs subgraph deploy --accept-defaults <subgraph-name>
|
|
|
221
231
|
|
|
222
232
|
## API Reference
|
|
223
233
|
|
|
224
|
-
See the [documentation](https://github.com/settlemint/sdk/tree/v0.9.3/sdk/cli/docs/settlemint.md) for available commands.
|
|
234
|
+
See the [documentation](https://github.com/settlemint/sdk/tree/v0.9.3-main39fa6d4d/sdk/cli/docs/settlemint.md) for available commands.
|
|
225
235
|
|
|
226
236
|
## Contributing
|
|
227
237
|
|