Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add private key import feature #5595

Merged
merged 5 commits into from
Jul 19, 2024

Conversation

shuse2
Copy link
Member

@shuse2 shuse2 commented Jun 25, 2024

What was the problem?

This PR resolves #5593

How was it solved?

Backport implementation done from Klayr at klayrHQ/klayr-desktop@v3.0.3...v3.0.6

How was it tested?

Manually tested

@shuse2 shuse2 self-assigned this Jun 25, 2024
@CLAassistant
Copy link

CLA assistant check
Thank you for your submission! We really appreciate it. Like many open source projects, we ask that you sign our Contributor License Agreement before we can accept your contribution.
You have signed the CLA already but the status is still pending? Let us recheck it.

@shuse2 shuse2 linked an issue Jun 25, 2024 that may be closed by this pull request
Copy link

@roccomuso roccomuso left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

looks good

@@ -12,7 +12,7 @@ const BackupRecoveryPhraseFlow = () => {
const [passphrase, setPassphrase] = useState('');

const onEnterPasswordSuccess = ({ recoveryPhrase }) => {
setPassphrase(recoveryPhrase);
setPassphrase(recoveryPhrase || '');
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

shouldn't we just don't call the fn if !recoveryPhrase ?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

if (recoveryPhrase) setPassphrase(recoveryPhrase) might be a good option in this case since passphrase is '' by default.

src/modules/account/utils/encryptAccount.js Outdated Show resolved Hide resolved
src/modules/account/utils/encryptAccount.js Outdated Show resolved Hide resolved
@ikem-legend ikem-legend self-requested a review July 19, 2024 17:16
@shuse2 shuse2 merged commit 3bd92b1 into 5580-remove-service-dependency Jul 19, 2024
1 check passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Support private key import
6 participants