-
Notifications
You must be signed in to change notification settings - Fork 574
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(cli): Add
wallet:encrypt
(#5327)
* feat(cli): Add `wallet:encrypt` * Update ironfish-cli/src/commands/wallet/encrypt.ts Co-authored-by: mat-if <[email protected]> --------- Co-authored-by: mat-if <[email protected]>
- Loading branch information
1 parent
7088bfd
commit 70b736d
Showing
1 changed file
with
53 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
/* This Source Code Form is subject to the terms of the Mozilla Public | ||
* License, v. 2.0. If a copy of the MPL was not distributed with this | ||
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */ | ||
import { RpcRequestError } from '@ironfish/sdk' | ||
import { Flags } from '@oclif/core' | ||
import { IronfishCommand } from '../../command' | ||
import { RemoteFlags } from '../../flags' | ||
import { inputPrompt } from '../../ui' | ||
|
||
export class EncryptCommand extends IronfishCommand { | ||
static hidden = true | ||
|
||
static description = 'encrypt accounts in the wallet' | ||
|
||
static flags = { | ||
...RemoteFlags, | ||
passphrase: Flags.string({ | ||
description: 'Passphrase to encrypt the wallet with', | ||
}), | ||
} | ||
|
||
async start(): Promise<void> { | ||
const { flags } = await this.parse(EncryptCommand) | ||
|
||
const client = await this.connectRpc() | ||
|
||
const response = await client.wallet.getAccountsStatus() | ||
if (response.content.encrypted) { | ||
this.log('Wallet is already encrypted') | ||
this.exit(1) | ||
} | ||
|
||
let passphrase = flags.passphrase | ||
if (!passphrase) { | ||
passphrase = await inputPrompt('Enter a passphrase to encrypt the wallet', true) | ||
} | ||
|
||
try { | ||
await client.wallet.encrypt({ | ||
passphrase, | ||
}) | ||
} catch (e) { | ||
if (e instanceof RpcRequestError) { | ||
this.log('Wallet encryption failed') | ||
this.exit(1) | ||
} | ||
|
||
throw e | ||
} | ||
|
||
this.log('Encrypted the wallet') | ||
} | ||
} |