Skip to content

feat: add support for 24 word recovery phrases #1346

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

Open
wants to merge 4 commits into
base: master
Choose a base branch
from

Conversation

HashEngineering
Copy link
Collaborator

@HashEngineering HashEngineering commented Feb 4, 2025

feat: add support for 24 word recovery phrases, add option to choose word count on wallet creation.

Issue being fixed or feature implemented

Related PR's and Dependencies

Screenshots / Videos

How Has This Been Tested?

  • QA (Mobile Team)

Checklist:

  • I have performed a self-review of my own code and added comments where necessary
  • I have added or updated relevant unit/integration/functional/e2e tests

Summary by CodeRabbit

  • New Features

    • Added an option for users to select their preferred wallet security level by choosing between a 12-word or 24-word recovery phrase during onboarding.
    • Introduced a new screen to guide users through the security level selection process.
  • Enhancements

    • Expanded wallet creation and recovery to support both 12-word and 24-word recovery phrases.
    • Updated error messages and UI text to reflect support for both 12 and 24-word phrases.
  • Bug Fixes

    • Improved validation to accept both 12 and 24-word recovery phrases when restoring a wallet.

@HashEngineering HashEngineering self-assigned this Feb 4, 2025
Copy link
Contributor

coderabbitai bot commented Feb 4, 2025

Walkthrough

This change set introduces support for both 12-word and 24-word wallet recovery phrases in the onboarding flow of the wallet application. It adds a new activity for selecting the security level (phrase length), updates the wallet creation logic to accept a word count parameter, and modifies validation and string resources to reflect the expanded options. The user interface is updated with a new layout and strings, and control flow is adjusted so users select their desired security level before wallet creation. Relevant classes and methods are updated to handle the new parameter throughout the onboarding process.

Changes

File(s) Change Summary
wallet/AndroidManifest.xml Added activity declaration for SelectSecurityLevelActivity.
wallet/res/layout/activity_phrasewordcount.xml Added new layout for security level (word count) selection.
wallet/res/values/strings-extra.xml Updated and added string resources for 12/24-word support and UI messaging.
wallet/src/de/schildbach/wallet/service/WalletFactory.kt Updated wallet creation interface and implementation to accept a seed word count (12 or 24).
wallet/src/de/schildbach/wallet/ui/OnboardingActivity.kt Added result launcher and flow to invoke security level selection before wallet creation.
wallet/src/de/schildbach/wallet/ui/OnboardingViewModel.kt Updated createNewWallet to accept and pass along the selected seed word count.
wallet/src/de/schildbach/wallet/ui/onboarding/SelectSecurityLevelActivity.kt Added new activity for selecting wallet security level (12 or 24 words) with result passing.
wallet/src/de/schildbach/wallet/util/MnemonicCodeExt.kt Updated mnemonic validation logic to allow 12 or 24 words.

Sequence Diagram(s)

sequenceDiagram
    participant User
    participant OnboardingActivity
    participant SelectSecurityLevelActivity
    participant OnboardingViewModel
    participant WalletFactory

    User->>OnboardingActivity: Clicks "Create New Wallet"
    OnboardingActivity->>SelectSecurityLevelActivity: Launch activity for result
    User->>SelectSecurityLevelActivity: Selects 12 or 24 words, clicks Continue
    SelectSecurityLevelActivity-->>OnboardingActivity: Returns selected word count
    OnboardingActivity->>OnboardingViewModel: createNewWallet(invite, wordCount)
    OnboardingViewModel->>WalletFactory: create(networkParams, wordCount)
    WalletFactory-->>OnboardingViewModel: Returns new wallet
    OnboardingViewModel-->>OnboardingActivity: Proceeds with onboarding
Loading

Suggested reviewers

  • Syn-McJ

Poem

A rabbit hopped in code today,
And gave you wallets, two new ways!
Twelve words or twenty-four,
Security galore—
Pick your phrase, then hop away.
With every click, your funds are sound,
In burrows safe and wallet-bound! 🐇


📜 Recent review details

Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between a33291a and 3f82940.

📒 Files selected for processing (4)
  • wallet/AndroidManifest.xml (1 hunks)
  • wallet/res/values/strings-extra.xml (2 hunks)
  • wallet/src/de/schildbach/wallet/ui/OnboardingActivity.kt (4 hunks)
  • wallet/src/de/schildbach/wallet/ui/OnboardingViewModel.kt (1 hunks)
✅ Files skipped from review due to trivial changes (1)
  • wallet/res/values/strings-extra.xml
🚧 Files skipped from review as they are similar to previous changes (3)
  • wallet/AndroidManifest.xml
  • wallet/src/de/schildbach/wallet/ui/OnboardingViewModel.kt
  • wallet/src/de/schildbach/wallet/ui/OnboardingActivity.kt
⏰ Context from checks skipped due to timeout of 90000ms (1)
  • GitHub Check: build

🪧 Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>, please review it.
    • Generate unit testing code for this file.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai generate unit testing code for this file.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @coderabbitai read src/utils.ts and generate unit testing code.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (Invoked using PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai generate docstrings to generate docstrings for this PR.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Other keywords and placeholders

  • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai anywhere in the PR title to generate the title automatically.

CodeRabbit Configuration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • Please see the configuration documentation for more information.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

Copy link
Member

@Syn-McJ Syn-McJ 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

@HashEngineering HashEngineering marked this pull request as ready for review February 10, 2025 15:42
Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

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

Actionable comments posted: 5

🧹 Nitpick comments (6)
wallet/src/de/schildbach/wallet/util/MnemonicCodeExt.kt (1)

63-64: LGTM! Consider documenting security implications.

The changes correctly implement BIP39 support for both 12 and 24-word recovery phrases. The validation logic and error message are accurate.

Consider adding a code comment explaining the security implications of choosing between 12 and 24 words (128 vs 256 bits of entropy) to help developers understand the trade-offs.

 @Throws(MnemonicException::class)
 fun check(context: Context, words: List<String>) {
+    // BIP39 supports 12 words (128 bits) or 24 words (256 bits) of entropy
+    // 24 words provide higher security at the cost of longer phrases
     if (words.size != 12 && words.size != 24) {
         throw MnemonicException.MnemonicLengthException("Word list size must be 12 or 24")
wallet/src/de/schildbach/wallet/ui/onboarding/SelectSecurityLevelActivity.kt (3)

8-10: Add state restoration for activity recreation.

The selected word count should be preserved when the activity is recreated (e.g., on configuration changes).

 class SelectSecurityLevelActivity : SecureActivity() {
     private lateinit var binding: ActivityPhrasewordcountBinding
     private var selectedWordCount: Int = 12
+    
+    override fun onSaveInstanceState(outState: Bundle) {
+        super.onSaveInstanceState(outState)
+        outState.putInt(EXTRA_WORD_COUNT, selectedWordCount)
+    }
+    
+    override fun onRestoreInstanceState(savedInstanceState: Bundle) {
+        super.onRestoreInstanceState(savedInstanceState)
+        setMode(savedInstanceState.getInt(EXTRA_WORD_COUNT, 12))
+    }

22-28: Add content descriptions for accessibility.

The word count options should be accessible to screen readers.

         binding.twelveWordsOption.setOnClickListener {
             setMode(12)
         }
+        binding.twelveWordsOption.contentDescription = getString(R.string.twelve_words_option_description)

         binding.twentyFourWordsOption.setOnClickListener {
             setMode(24)
         }
+        binding.twentyFourWordsOption.contentDescription = getString(R.string.twenty_four_words_option_description)

49-51: Define word count constants in the companion object.

Extract the hard-coded word count values into named constants for better maintainability.

     companion object {
         const val EXTRA_WORD_COUNT = "extra_word_count"
+        const val WORD_COUNT_12 = 12
+        const val WORD_COUNT_24 = 24
+        const val DEFAULT_WORD_COUNT = WORD_COUNT_12
     }
wallet/res/layout/activity_phrasewordcount.xml (1)

87-88: Fix inconsistent ID naming.

The IDs for the 24-word option use "non_contested" prefix which seems unrelated to its purpose. Consider using consistent naming like:

-android:id="@+id/non_contested_name_title"
+android:id="@+id/twenty_four_words_option_title"
-android:id="@+id/non_contested_name_description"
+android:id="@+id/twenty_four_words_option_description"

Also applies to: 96-97

wallet/res/values/strings.xml (1)

420-421: Ensure Consistent Naming & Clear Messaging for New Recovery Option Strings

The new string resources have been added to support the recovery phrase feature. However, note that one string is named with a "_message" suffix ("select_security_level_12_words_message") and the other with a "_title" suffix ("select_security_level_24_words_title"). Please verify that this naming difference is intentional and that the UI components display them appropriately. Also, consider if the label "Very secure" clearly communicates that it corresponds to a 24-word recovery phrase option, in comparison to the plain "12 word recovery phrase" text.

📜 Review details

Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between df57343 and 3223d6f.

📒 Files selected for processing (10)
  • wallet/AndroidManifest.xml (1 hunks)
  • wallet/res/layout/activity_phrasewordcount.xml (1 hunks)
  • wallet/res/values/strings-extra.xml (2 hunks)
  • wallet/res/values/strings.xml (1 hunks)
  • wallet/src/de/schildbach/wallet/service/WalletFactory.kt (3 hunks)
  • wallet/src/de/schildbach/wallet/ui/OnboardingActivity.kt (4 hunks)
  • wallet/src/de/schildbach/wallet/ui/OnboardingViewModel.kt (1 hunks)
  • wallet/src/de/schildbach/wallet/ui/dashpay/utils/GoogleDriveService.kt (1 hunks)
  • wallet/src/de/schildbach/wallet/ui/onboarding/SelectSecurityLevelActivity.kt (1 hunks)
  • wallet/src/de/schildbach/wallet/util/MnemonicCodeExt.kt (1 hunks)
🔇 Additional comments (4)
wallet/src/de/schildbach/wallet/service/WalletFactory.kt (2)

33-33: Verify the secure random number generation implementation.

The code imports both LinuxSecureRandom and SecureRandom. While SecureRandom is used for seed generation, ensure that LinuxSecureRandom is properly initialized for enhanced entropy on Linux systems.

Also applies to: 53-53

✅ Verification successful

🏁 Script executed:

#!/bin/bash
# Check if LinuxSecureRandom is initialized elsewhere
rg -A 5 "LinuxSecureRandom"

Length of output: 1843


Secure Random Initialization Verified

The search confirms that LinuxSecureRandom is actively instantiated in WalletApplication.java (see the new LinuxSecureRandom(); line), ensuring enhanced entropy on Linux systems. This initialization meets the secure random number generation requirement.

  • Location: wallet/src/de/schildbach/wallet/WalletApplication.java — Proper instantiation of LinuxSecureRandom.
  • Implication: WalletFactory.kt imports LinuxSecureRandom, relying on the initialization already performed in the application entry point, which is appropriate.

104-119: Verify the entropy calculation for 24-word phrases.

The implementation doubles the entropy bits for 24-word phrases. This aligns with BIP-39 specifications where:

  • 12 words = 128 bits of entropy
  • 24 words = 256 bits of entropy

However, let's verify this is the standard approach.

✅ Verification successful

🌐 Web query:

What is the correct entropy for 24-word BIP39 mnemonic phrases?

💡 Result:

The correct entropy for a 24-word BIP39 mnemonic phrase is 256 bits of cryptographic randomness[3][4][9]. This value adheres to BIP39 specifications and ensures compatibility with wallets supporting this standard.

Key details:

  1. Entropy requirements:

    • Must be 256 bits (32 bytes) long[3][4][9].
    • Must be a multiple of 32 bits (required by BIP39's checksum mechanism)[9][10].
    • Converted through SHA-256 hashing to generate an 8-bit checksum[8].
  2. Conversion process:

    Entropy (256 bits) + Checksum (8 bits) = Total (264 bits)
    264 bits ÷ 11-bit word indexes = 24 words[9][11]
  3. Security implications:

    • Provides equivalent security to 2^256 possible combinations[3][7]
    • Requires physical dice rolls or other true randomness sources for secure generation[6][7]

For comparison:

Word Count Entropy Bits Checksum Bits
12 128 4
24 256 8

This structure ensures mathematical validity while maintaining human-readable backup capabilities[4][9].

Citations:


24-word mnemonic entropy calculation confirmed

The code correctly doubles the 128-bit entropy value (used for 12-word phrases) to reach 256 bits for 24-word phrases, which is in line with BIP-39 specifications.

wallet/AndroidManifest.xml (1)

100-104: LGTM!

The activity declaration follows the same pattern as other similar activities in the app.

wallet/res/values/strings-extra.xml (1)

125-125: LGTM!

The validation message has been correctly updated to support both 12 and 24-word phrases.

Comment on lines 59 to 61
fun createNewWallet(onboardingInvite: InvitationLinkData?, seedWordCount: Int) {
walletApplication.initEnvironmentIfNeeded()
val wallet = walletFactory.create(Constants.NETWORK_PARAMETERS)
val wallet = walletFactory.create(Constants.NETWORK_PARAMETERS, seedWordCount)
Copy link
Contributor

Choose a reason for hiding this comment

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

🛠️ Refactor suggestion

Validate seedWordCount parameter.

Add validation to ensure only supported word counts (12 or 24) are accepted.

     fun createNewWallet(onboardingInvite: InvitationLinkData?, seedWordCount: Int) {
+        require(seedWordCount == 12 || seedWordCount == 24) { "Unsupported word count: $seedWordCount" }
         walletApplication.initEnvironmentIfNeeded()
         val wallet = walletFactory.create(Constants.NETWORK_PARAMETERS, seedWordCount)
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
fun createNewWallet(onboardingInvite: InvitationLinkData?, seedWordCount: Int) {
walletApplication.initEnvironmentIfNeeded()
val wallet = walletFactory.create(Constants.NETWORK_PARAMETERS)
val wallet = walletFactory.create(Constants.NETWORK_PARAMETERS, seedWordCount)
fun createNewWallet(onboardingInvite: InvitationLinkData?, seedWordCount: Int) {
require(seedWordCount == 12 || seedWordCount == 24) { "Unsupported word count: $seedWordCount" }
walletApplication.initEnvironmentIfNeeded()
val wallet = walletFactory.create(Constants.NETWORK_PARAMETERS, seedWordCount)
}

Comment on lines 117 to 119
fun getSigninAccount(context: Context?): GoogleSignInAccount? {
val opts = getGoogleSigninOptions()
val account = GoogleSignIn.getLastSignedInAccount(context)
val account = GoogleSignIn.getLastSignedInAccount(context!!)
Copy link
Contributor

Choose a reason for hiding this comment

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

⚠️ Potential issue

Replace non-null assertion with safe null handling.

Using !! operator can lead to runtime crashes. Consider handling null context gracefully.

     fun getSigninAccount(context: Context?): GoogleSignInAccount? {
         val opts = getGoogleSigninOptions()
-        val account = GoogleSignIn.getLastSignedInAccount(context!!)
+        if (context == null) {
+            log.warn("getSigninAccount called with null context")
+            return null
+        }
+        val account = GoogleSignIn.getLastSignedInAccount(context)
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
fun getSigninAccount(context: Context?): GoogleSignInAccount? {
val opts = getGoogleSigninOptions()
val account = GoogleSignIn.getLastSignedInAccount(context)
val account = GoogleSignIn.getLastSignedInAccount(context!!)
fun getSigninAccount(context: Context?): GoogleSignInAccount? {
val opts = getGoogleSigninOptions()
if (context == null) {
log.warn("getSigninAccount called with null context")
return null
}
val account = GoogleSignIn.getLastSignedInAccount(context)
// ... rest of the implementation
}

Comment on lines +116 to +124
private val selectWordCountLauncher = registerForActivityResult(ActivityResultContracts.StartActivityForResult()) { result ->
if (result.resultCode == RESULT_OK) {
val onboardingInvite = intent.getParcelableExtra<InvitationLinkData>(EXTRA_INVITE)
viewModel.createNewWallet(
onboardingInvite,
result.data!!.extras!!.getInt(SelectSecurityLevelActivity.EXTRA_WORD_COUNT)
)
}
}
Copy link
Contributor

Choose a reason for hiding this comment

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

⚠️ Potential issue

Handle potential null values safely.

Using double non-null assertions (!!) on result.data and extras can lead to runtime crashes.

     private val selectWordCountLauncher = registerForActivityResult(ActivityResultContracts.StartActivityForResult()) { result ->
         if (result.resultCode == RESULT_OK) {
+            val wordCount = result.data?.extras?.getInt(SelectSecurityLevelActivity.EXTRA_WORD_COUNT)
+            if (wordCount == null) {
+                log.error("Failed to get word count from SelectSecurityLevelActivity result")
+                return@registerForActivityResult
+            }
             val onboardingInvite = intent.getParcelableExtra<InvitationLinkData>(EXTRA_INVITE)
             viewModel.createNewWallet(
                 onboardingInvite,
-                result.data!!.extras!!.getInt(SelectSecurityLevelActivity.EXTRA_WORD_COUNT)
+                wordCount
             )
         }
     }
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
private val selectWordCountLauncher = registerForActivityResult(ActivityResultContracts.StartActivityForResult()) { result ->
if (result.resultCode == RESULT_OK) {
val onboardingInvite = intent.getParcelableExtra<InvitationLinkData>(EXTRA_INVITE)
viewModel.createNewWallet(
onboardingInvite,
result.data!!.extras!!.getInt(SelectSecurityLevelActivity.EXTRA_WORD_COUNT)
)
}
}
private val selectWordCountLauncher = registerForActivityResult(ActivityResultContracts.StartActivityForResult()) { result ->
if (result.resultCode == RESULT_OK) {
val wordCount = result.data?.extras?.getInt(SelectSecurityLevelActivity.EXTRA_WORD_COUNT)
if (wordCount == null) {
log.error("Failed to get word count from SelectSecurityLevelActivity result")
return@registerForActivityResult
}
val onboardingInvite = intent.getParcelableExtra<InvitationLinkData>(EXTRA_INVITE)
viewModel.createNewWallet(
onboardingInvite,
wordCount
)
}
}

Comment on lines +43 to +73
<androidx.constraintlayout.widget.ConstraintLayout
android:id="@+id/twelve_words_option"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/register_panel"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="15dp"
android:background="@drawable/light_grey_border_item"
android:paddingHorizontal="20dp"
android:paddingVertical="12dp">

<TextView
android:id="@+id/twelve_words_option_title"
style="@style/Subtitle1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/select_security_level_12_words_title"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />

<TextView
android:id="@+id/twelve_words_option_message"
style="@style/Caption.Secondary"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginEnd="20dp"
android:text="@string/select_security_level_12_words_message"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/twelve_words_option_title" />
</androidx.constraintlayout.widget.ConstraintLayout>
Copy link
Contributor

Choose a reason for hiding this comment

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

🛠️ Refactor suggestion

Add content descriptions for accessibility.

Both option containers need content descriptions to improve accessibility for screen readers.

 <androidx.constraintlayout.widget.ConstraintLayout
     android:id="@+id/twelve_words_option"
+    android:contentDescription="@string/select_security_level_12_words_title"
     ...>

 <androidx.constraintlayout.widget.ConstraintLayout
     android:id="@+id/twenty_four_words_option"
+    android:contentDescription="@string/select_security_level_24_words_title"
     ...>

Also applies to: 74-104

Comment on lines 476 to 480
<string name="select_security_level_title">Select Security Level</string>
<string name="select_security_level_message">You can secure your wallet with a 12 or 24 word recovery phrase.</string>
<string name="select_security_level_12_words_title">Secure</string>
<string name="select_security_level_24_words_message">24 word recovery phrase</string>
</resources>
Copy link
Contributor

Choose a reason for hiding this comment

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

⚠️ Potential issue

Add missing string resource.

The string select_security_level_12_words_message is referenced in the layout but not defined here.

Add the missing string resource:

 <string name="select_security_level_12_words_title">Secure</string>
+<string name="select_security_level_12_words_message">12 word recovery phrase</string>
 <string name="select_security_level_24_words_message">24 word recovery phrase</string>
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
<string name="select_security_level_title">Select Security Level</string>
<string name="select_security_level_message">You can secure your wallet with a 12 or 24 word recovery phrase.</string>
<string name="select_security_level_12_words_title">Secure</string>
<string name="select_security_level_24_words_message">24 word recovery phrase</string>
</resources>
<string name="select_security_level_title">Select Security Level</string>
<string name="select_security_level_message">You can secure your wallet with a 12 or 24 word recovery phrase.</string>
<string name="select_security_level_12_words_title">Secure</string>
<string name="select_security_level_12_words_message">12 word recovery phrase</string>
<string name="select_security_level_24_words_message">24 word recovery phrase</string>
</resources>

@HashEngineering HashEngineering added this to the 11.3 milestone Apr 17, 2025
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.

2 participants