diff --git a/ironfish-cli/src/commands/wallet/burn.ts b/ironfish-cli/src/commands/wallet/burn.ts index 5827df6420..f6e326a42c 100644 --- a/ironfish-cli/src/commands/wallet/burn.ts +++ b/ironfish-cli/src/commands/wallet/burn.ts @@ -34,7 +34,7 @@ export class Burn extends IronfishCommand { ...RemoteFlags, account: Flags.string({ char: 'f', - description: 'The account to burn from', + description: 'Name of the account to burn from', }), fee: IronFlag({ char: 'o', diff --git a/ironfish-cli/src/commands/wallet/chainport/send.ts b/ironfish-cli/src/commands/wallet/chainport/send.ts index b613651778..11e6d65b77 100644 --- a/ironfish-cli/src/commands/wallet/chainport/send.ts +++ b/ironfish-cli/src/commands/wallet/chainport/send.ts @@ -45,7 +45,7 @@ export class BridgeCommand extends IronfishCommand { }), account: Flags.string({ char: 'f', - description: 'The account to send the asset from', + description: 'Name of the account to send the asset from', }), to: Flags.string({ char: 't', diff --git a/ironfish-cli/src/commands/wallet/import.ts b/ironfish-cli/src/commands/wallet/import.ts index 9a2e7ba478..3105057b9d 100644 --- a/ironfish-cli/src/commands/wallet/import.ts +++ b/ironfish-cli/src/commands/wallet/import.ts @@ -32,16 +32,16 @@ export class ImportCommand extends IronfishCommand { description: 'Rescan the blockchain once the account is imported', }), path: Flags.string({ - description: 'the path to the file containing the account to import', + description: 'The path to the file containing the account to import', }), name: Flags.string({ - description: 'the name to use for the account', + description: 'Name to use for the account', }), createdAt: Flags.integer({ description: 'Block sequence to begin scanning from for the imported account', }), ledger: Flags.boolean({ - description: 'import a view-only account from a ledger device', + description: 'Import a view-only account from a ledger device', default: false, exclusive: ['path'], }), @@ -61,7 +61,7 @@ export class ImportCommand extends IronfishCommand { ((flags.path && flags.path.length !== 0) || flags.ledger) ) { this.error( - `Your command includes an unexpected argument. Please pass only 1 of the following: + `Your command includes an unexpected argument. Please pass only 1 of the following: 1. the output of wallet:export OR 2. --path to import an account from a file OR 3. --ledger to import an account from a ledger device`, diff --git a/ironfish-cli/src/commands/wallet/mint.ts b/ironfish-cli/src/commands/wallet/mint.ts index 0557493128..2c40ea30fe 100644 --- a/ironfish-cli/src/commands/wallet/mint.ts +++ b/ironfish-cli/src/commands/wallet/mint.ts @@ -40,7 +40,7 @@ export class Mint extends IronfishCommand { ...RemoteFlags, account: Flags.string({ char: 'f', - description: 'The account to mint from', + description: 'Name of the account to mint from', }), fee: IronFlag({ char: 'o', diff --git a/ironfish-cli/src/commands/wallet/multisig/account/participants.ts b/ironfish-cli/src/commands/wallet/multisig/account/participants.ts index eca3361fc9..70d856010f 100644 --- a/ironfish-cli/src/commands/wallet/multisig/account/participants.ts +++ b/ironfish-cli/src/commands/wallet/multisig/account/participants.ts @@ -12,7 +12,7 @@ export class MultisigAccountParticipants extends IronfishCommand { ...RemoteFlags, account: Flags.string({ char: 'f', - description: 'The account to list group identities for', + description: 'Name of the account to list group identities for', }), } diff --git a/ironfish-cli/src/commands/wallet/multisig/commitment/aggregate.ts b/ironfish-cli/src/commands/wallet/multisig/commitment/aggregate.ts index f09021af7c..0ec4cb5b18 100644 --- a/ironfish-cli/src/commands/wallet/multisig/commitment/aggregate.ts +++ b/ironfish-cli/src/commands/wallet/multisig/commitment/aggregate.ts @@ -15,7 +15,7 @@ export class CreateSigningPackage extends IronfishCommand { ...RemoteFlags, account: Flags.string({ char: 'f', - description: 'The account to use when creating the signing package', + description: 'Name of the account to use when creating the signing package', required: false, }), unsignedTransaction: Flags.string({ diff --git a/ironfish-cli/src/commands/wallet/multisig/commitment/create.ts b/ironfish-cli/src/commands/wallet/multisig/commitment/create.ts index fff272cd81..2cbbc76e65 100644 --- a/ironfish-cli/src/commands/wallet/multisig/commitment/create.ts +++ b/ironfish-cli/src/commands/wallet/multisig/commitment/create.ts @@ -18,7 +18,7 @@ export class CreateSigningCommitmentCommand extends IronfishCommand { account: Flags.string({ char: 'f', description: - 'The account to use for generating the commitment, must be a multisig participant account', + 'Name of the account to use for generating the commitment, must be a multisig participant account', required: false, }), unsignedTransaction: Flags.string({ diff --git a/ironfish-cli/src/commands/wallet/multisig/signature/aggregate.ts b/ironfish-cli/src/commands/wallet/multisig/signature/aggregate.ts index 7d22da5913..18f23b058e 100644 --- a/ironfish-cli/src/commands/wallet/multisig/signature/aggregate.ts +++ b/ironfish-cli/src/commands/wallet/multisig/signature/aggregate.ts @@ -16,7 +16,7 @@ export class MultisigSign extends IronfishCommand { ...RemoteFlags, account: Flags.string({ char: 'f', - description: 'Account to use when aggregating signature shares', + description: 'Name of the account to use when aggregating signature shares', required: false, }), signingPackage: Flags.string({ diff --git a/ironfish-cli/src/commands/wallet/multisig/signature/create.ts b/ironfish-cli/src/commands/wallet/multisig/signature/create.ts index 39812cec25..820f842ba6 100644 --- a/ironfish-cli/src/commands/wallet/multisig/signature/create.ts +++ b/ironfish-cli/src/commands/wallet/multisig/signature/create.ts @@ -18,7 +18,7 @@ export class CreateSignatureShareCommand extends IronfishCommand { ...RemoteFlags, account: Flags.string({ char: 'f', - description: 'The account from which the signature share will be created', + description: 'Name of the account from which the signature share will be created', required: false, }), signingPackage: Flags.string({ diff --git a/ironfish-cli/src/commands/wallet/notes/combine.ts b/ironfish-cli/src/commands/wallet/notes/combine.ts index c48a31dd61..ccbda96c7b 100644 --- a/ironfish-cli/src/commands/wallet/notes/combine.ts +++ b/ironfish-cli/src/commands/wallet/notes/combine.ts @@ -70,7 +70,7 @@ export class CombineNotesCommand extends IronfishCommand { }), account: Flags.string({ char: 'f', - description: 'The account to send money from', + description: 'Name of the account to send money from', }), benchmark: Flags.boolean({ hidden: true, diff --git a/ironfish-cli/src/commands/wallet/send.ts b/ironfish-cli/src/commands/wallet/send.ts index fb442012be..00068f2247 100644 --- a/ironfish-cli/src/commands/wallet/send.ts +++ b/ironfish-cli/src/commands/wallet/send.ts @@ -42,7 +42,7 @@ export class Send extends IronfishCommand { ...RemoteFlags, account: Flags.string({ char: 'f', - description: 'The account to send money from', + description: 'Name of the account to send money from', }), amount: ValueFlag({ char: 'a', diff --git a/ironfish-cli/src/commands/wallet/transactions/decode.ts b/ironfish-cli/src/commands/wallet/transactions/decode.ts index baafd0f8b2..f6b31775e3 100644 --- a/ironfish-cli/src/commands/wallet/transactions/decode.ts +++ b/ironfish-cli/src/commands/wallet/transactions/decode.ts @@ -28,7 +28,7 @@ export class TransactionsDecodeCommand extends IronfishCommand { ...RemoteFlags, account: Flags.string({ char: 'f', - description: 'The name of the account to use to for viewing transaction details', + description: 'Name of the account to use to for viewing transaction details', }), transaction: Flags.string({ char: 't', diff --git a/ironfish-cli/src/commands/wallet/transactions/post.ts b/ironfish-cli/src/commands/wallet/transactions/post.ts index 4f5c184891..b956ad64e4 100644 --- a/ironfish-cli/src/commands/wallet/transactions/post.ts +++ b/ironfish-cli/src/commands/wallet/transactions/post.ts @@ -30,7 +30,7 @@ export class TransactionsPostCommand extends IronfishCommand { static flags = { ...RemoteFlags, account: Flags.string({ - description: 'The account that created the raw transaction', + description: 'Name of the account that created the raw transaction', char: 'f', required: false, deprecated: true,