From 4394caa177527759d410eead421e9abd127fc2fb Mon Sep 17 00:00:00 2001 From: paypes <43441600+abbesBenayache@users.noreply.github.com> Date: Wed, 20 Aug 2025 14:18:21 +0200 Subject: [PATCH 1/2] feat: improve deploy help message to include config file name and default chain --- cli/src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/src/index.ts b/cli/src/index.ts index 22a61d28..0b415f14 100755 --- a/cli/src/index.ts +++ b/cli/src/index.ts @@ -92,7 +92,7 @@ yargsInstance builder: (y) => { return y.option('chain', { describe: - '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)', type: 'string', choices: SUPPORTED_CHAINS, }); From 294e8def9fd2e4280e712abf2cebc0ba0bf65c3e Mon Sep 17 00:00:00 2001 From: Pierre Jeanjacquot <26487010+PierreJeanjacquot@users.noreply.github.com> Date: Thu, 21 Aug 2025 11:42:36 +0200 Subject: [PATCH 2/2] fix: add chain option helper to other commands --- cli/src/index.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cli/src/index.ts b/cli/src/index.ts index 0b415f14..25ddfbf1 100755 --- a/cli/src/index.ts +++ b/cli/src/index.ts @@ -92,7 +92,7 @@ yargsInstance builder: (y) => { return y.option('chain', { describe: - 'Specify the blockchain on which the iApp will be deployed (overrides defaultChain configuration in iapp.config.json)', + 'Specify the blockchain on which the iApp will be deployed (overrides defaultChain configuration from iapp.config.json)', type: 'string', choices: SUPPORTED_CHAINS, }); @@ -136,7 +136,7 @@ yargsInstance }) .option('chain', { describe: - 'Specify the blockchain on which the iApp is deployed (overrides defaultChain configuration)', + 'Specify the blockchain on which the iApp is deployed (overrides defaultChain configuration from iapp.config.json)', type: 'string', choices: SUPPORTED_CHAINS, }); @@ -157,7 +157,7 @@ yargsInstance }) .option('chain', { describe: - 'Specify the blockchain on which the task is registered (overrides defaultChain configuration)', + 'Specify the blockchain on which the task is registered (overrides defaultChain configuration from iapp.config.json)', type: 'string', choices: SUPPORTED_CHAINS, });