@settlemint/sdk-cli 0.9.3-mainaf7d49d5 → 0.9.3-mainb1d428c5
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 +12 -2
- package/dist/cli.js +4445 -3664
- package/dist/cli.js.map +37 -35
- package/package.json +7 -7
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
|
|