We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b8e663c commit eda2c2cCopy full SHA for eda2c2c
cli/src/index.ts
@@ -49,7 +49,7 @@ yargsInstance
49
.usage('$0 <cmd> [args]')
50
51
// Initialize command
52
- .command('init', 'Initialize your app structure', () => {}, init)
+ .command('init', 'Initialize your app structure', () => { }, init)
53
54
// Test command
55
.command({
@@ -92,7 +92,7 @@ yargsInstance
92
builder: (y) => {
93
return y.option('chain', {
94
describe:
95
- 'Specify the blockchain on which the iApp will be deployed (overrides defaultChain configuration)',
+ `Specify the blockchain on which the iApp will be deployed (overrides defaultChain configuration in iapp.config.json)`,
96
type: 'string',
97
choices: SUPPORTED_CHAINS,
98
});
0 commit comments