diff --git a/README.md b/README.md index e673fa31..fce9caaf 100644 --- a/README.md +++ b/README.md @@ -346,7 +346,7 @@ Flags: Displays the balance of a specified account. Users can choose to view only the Hbar balance or the balance of a specific token. It's not possible to use both options at once. ```sh -hcli account balance [-h,--only-hbar] [-t,--token-id ] +hcli account balance -a,--account-id-or-alias [-h,--only-hbar] [-t,--token-id ] // Output Balance for account 0.0.5892294: diff --git a/src/commands/account/balance.ts b/src/commands/account/balance.ts index afb4ecb2..58799efd 100644 --- a/src/commands/account/balance.ts +++ b/src/commands/account/balance.ts @@ -20,7 +20,7 @@ export default (program: any) => { .description('Retrieve the balance for an account ID or alias') .requiredOption( '-a, --account-id-or-alias ', - 'Account ID or account alias to retrieve balance for', + '(Required) Account ID or account alias to retrieve balance for', ) .option('-h, --only-hbar', 'Show only Hbar balance') .option('-t, --token-id ', 'Show balance for a specific token ID')