Skip to content

Commit 9153ae7

Browse files
committed
3.1.0-beta.0
1 parent 651748c commit 9153ae7

2 files changed

Lines changed: 40 additions & 19 deletions

File tree

README.md

Lines changed: 39 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ $ npm install -g @astar-network/swanky-cli
187187
$ swanky COMMAND
188188
running command...
189189
$ swanky (--version|-V|-v)
190-
@astar-network/swanky-cli/3.0.4 darwin-x64 node-v19.9.0
190+
@astar-network/swanky-cli/3.1.0-beta.0 darwin-x64 node-v20.2.0
191191
$ swanky --help [COMMAND]
192192
USAGE
193193
$ swanky COMMAND
@@ -230,11 +230,12 @@ Create a new dev account in config
230230

231231
```
232232
USAGE
233-
$ swanky account create [-g] [-d]
233+
$ swanky account create [-v] [-g] [-d]
234234
235235
FLAGS
236236
-d, --dev
237237
-g, --generate
238+
-v, --verbose Display more info in the result logs
238239
239240
DESCRIPTION
240241
Create a new dev account in config
@@ -246,7 +247,10 @@ List dev accounts stored in config
246247

247248
```
248249
USAGE
249-
$ swanky account list
250+
$ swanky account list [-v]
251+
252+
FLAGS
253+
-v, --verbose Display more info in the result logs
250254
251255
DESCRIPTION
252256
List dev accounts stored in config
@@ -261,7 +265,10 @@ List dev accounts stored in config
261265

262266
```
263267
USAGE
264-
$ swanky account ls
268+
$ swanky account ls [-v]
269+
270+
FLAGS
271+
-v, --verbose Display more info in the result logs
265272
266273
DESCRIPTION
267274
List dev accounts stored in config
@@ -276,13 +283,16 @@ Check installed package versions and compatibility
276283

277284
```
278285
USAGE
279-
$ swanky check
286+
$ swanky check [-v]
287+
288+
FLAGS
289+
-v, --verbose Display more info in the result logs
280290
281291
DESCRIPTION
282292
Check installed package versions and compatibility
283293
```
284294

285-
_See code: [dist/commands/check/index.ts](https://github.com/AstarNetwork/swanky-cli/blob/v3.0.4/dist/commands/check/index.ts)_
295+
_See code: [dist/commands/check/index.ts](https://github.com/AstarNetwork/swanky-cli/blob/v3.1.0-beta.0/dist/commands/check/index.ts)_
286296

287297
## `swanky contract compile [CONTRACTNAME]`
288298

@@ -298,7 +308,7 @@ ARGUMENTS
298308
FLAGS
299309
-a, --all Set all to true to compile all contracts
300310
-r, --release A production contract should always be build in `release` mode for building optimized wasm
301-
-v, --verbose Display additional compilation output
311+
-v, --verbose Display more info in the result logs
302312
303313
DESCRIPTION
304314
Compile the smart contract(s) in your contracts directory
@@ -310,7 +320,7 @@ Deploy contract to a running node
310320

311321
```
312322
USAGE
313-
$ swanky contract deploy CONTRACTNAME --account <value> [-g <value>] [-a <value>] [-c <value>] [-n <value>]
323+
$ swanky contract deploy CONTRACTNAME --account <value> [-v] [-g <value>] [-a <value>] [-c <value>] [-n <value>]
314324
315325
ARGUMENTS
316326
CONTRACTNAME Name of the contract to deploy
@@ -320,6 +330,7 @@ FLAGS
320330
-c, --constructorName=<value> [default: new] Constructor function name of a contract to deploy
321331
-g, --gas=<value>
322332
-n, --network=<value> Network name to connect to
333+
-v, --verbose Display more info in the result logs
323334
--account=<value> (required) Alias of account to be used
324335
325336
DESCRIPTION
@@ -350,7 +361,7 @@ Generate a new smart contract template inside a project
350361

351362
```
352363
USAGE
353-
$ swanky contract new CONTRACTNAME [--template blank|flipper|psp22] [-v]
364+
$ swanky contract new CONTRACTNAME [-v] [--template blank|flipper|psp22]
354365
355366
ARGUMENTS
356367
CONTRACTNAME Name of the new contract
@@ -391,13 +402,14 @@ Run tests for a given contact
391402

392403
```
393404
USAGE
394-
$ swanky contract test [CONTRACTNAME] [-a]
405+
$ swanky contract test [CONTRACTNAME] [-v] [-a]
395406
396407
ARGUMENTS
397408
CONTRACTNAME Name of the contract to test
398409
399410
FLAGS
400-
-a, --all Set all to true to compile all contracts
411+
-a, --all Set all to true to compile all contracts
412+
-v, --verbose Display more info in the result logs
401413
402414
DESCRIPTION
403415
Run tests for a given contact
@@ -432,11 +444,14 @@ Generate types from compiled contract metadata
432444

433445
```
434446
USAGE
435-
$ swanky contract typegen CONTRACTNAME
447+
$ swanky contract typegen CONTRACTNAME [-v]
436448
437449
ARGUMENTS
438450
CONTRACTNAME Name of the contract
439451
452+
FLAGS
453+
-v, --verbose Display more info in the result logs
454+
440455
DESCRIPTION
441456
Generate types from compiled contract metadata
442457
```
@@ -459,7 +474,7 @@ DESCRIPTION
459474
Display help for swanky.
460475
```
461476

462-
_See code: [@oclif/plugin-help](https://github.com/oclif/plugin-help/blob/v5.2.9/src/commands/help.ts)_
477+
_See code: [@oclif/plugin-help](https://github.com/oclif/plugin-help/blob/v5.2.14/src/commands/help.ts)_
463478

464479
## `swanky init PROJECTNAME`
465480

@@ -482,7 +497,7 @@ DESCRIPTION
482497
Generate a new smart contract environment
483498
```
484499

485-
_See code: [dist/commands/init/index.ts](https://github.com/AstarNetwork/swanky-cli/blob/v3.0.4/dist/commands/init/index.ts)_
500+
_See code: [dist/commands/init/index.ts](https://github.com/AstarNetwork/swanky-cli/blob/v3.1.0-beta.0/dist/commands/init/index.ts)_
486501

487502
## `swanky node install`
488503

@@ -505,7 +520,10 @@ Purge local chain state
505520

506521
```
507522
USAGE
508-
$ swanky node purge
523+
$ swanky node purge [-v]
524+
525+
FLAGS
526+
-v, --verbose Display more info in the result logs
509527
510528
DESCRIPTION
511529
Purge local chain state
@@ -517,12 +535,15 @@ Start a local node
517535

518536
```
519537
USAGE
520-
$ swanky node start [-t] [--rpcCors <value>] [--finalizeDelaySec <value>]
538+
$ swanky node start [-v] [-t] [--rpcCors <value>] [--finalizeDelaySec <value>]
521539
522540
FLAGS
523541
-t, --tmp
524542
Run node with non-persistent mode
525543
544+
-v, --verbose
545+
Display more info in the result logs
546+
526547
--finalizeDelaySec=<value>
527548
Delay time in seconds after blocks being sealed
528549
@@ -558,7 +579,7 @@ EXAMPLES
558579
$ swanky plugins
559580
```
560581

561-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v3.1.1/src/commands/plugins/index.ts)_
582+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v3.1.8/src/commands/plugins/index.ts)_
562583

563584
## `swanky plugins:install PLUGIN...`
564585

@@ -791,5 +812,5 @@ FLAG DESCRIPTIONS
791812
Additionally shows the architecture, node version, operating system, and versions of plugins that the CLI is using.
792813
```
793814

794-
_See code: [@oclif/plugin-version](https://github.com/oclif/plugin-version/blob/v1.3.4/src/commands/version.ts)_
815+
_See code: [@oclif/plugin-version](https://github.com/oclif/plugin-version/blob/v1.3.7/src/commands/version.ts)_
795816
<!-- commandsstop -->

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@astar-network/swanky-cli",
3-
"version": "3.0.4",
3+
"version": "3.1.0-beta.0",
44
"description": "All in one WASM smart contract development toolset",
55
"author": "Astar network",
66
"license": "MIT",

0 commit comments

Comments
 (0)