Skip to content

Commit c0fc575

Browse files
Improve some of the VM descriptions
1 parent 426bee0 commit c0fc575

File tree

5 files changed

+13
-12
lines changed

5 files changed

+13
-12
lines changed

Src/FinderOuter/ViewModels/MissingBase16ViewModel.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,9 +45,9 @@ public MissingBase16ViewModel()
4545

4646
public override string OptionName => "Missing Base16";
4747
public override string Description => $"Helps you recover missing Base-16 (hexadecimal) characters in private keys. " +
48-
$"Since unlike WIF (Base-58) this format has no checksum you will have to enter an additional data to check each " +
49-
$"result with. Currently only an address is accepted." +
50-
$"{Environment.NewLine}" +
48+
$"Since unlike WIF (Base-58) this format has no checksum, all combinations with any character is correct. " +
49+
$"This is why the code has to check each combination against the additional data which can be an address or a " +
50+
$"public key.{Environment.NewLine}" +
5151
$"Enter the base-16 string and replace its missing characters with the symbol defined by {nameof(MissingChar)} " +
5252
$"parameter and press Find.";
5353

Src/FinderOuter/ViewModels/MissingBase58ViewModel.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -46,10 +46,10 @@ public MissingBase58ViewModel()
4646

4747

4848
public override string OptionName => "Missing Base58";
49-
public override string Description => $"If you have a base-58 encoded string with a checksum (such as private key WIFs) " +
50-
$"that is missing some characters and you know the location of these missing characters (eg. a damaged paper wallet) " +
51-
$"you can use this option to recover it.{Environment.NewLine}" +
52-
$"All you have to do is to enter the base-58 string below and replace its missing characters with the symbol " +
49+
public override string Description => $"If you have a base-58 encoded string with a checksum such as private key WIFs " +
50+
$"(full list can be found under Input type dropdown) that is missing some characters at known locations " +
51+
$"(eg. a damaged paper wallet) you can use this option to recover it.{Environment.NewLine}" +
52+
$"Enter the base-58 string below and replace its missing characters with the symbol " +
5353
$"defined by {nameof(MissingChar)} parameter and press Find.{Environment.NewLine}" +
5454
$"Exception: if you have a compressed private key missing 3 characters, there is no need to use " +
5555
$"{nameof(MissingChar)} parameter anymore, just enter the {ConstantsFO.PrivKeyCompWifLen - 3} characters you have" +

Src/FinderOuter/ViewModels/MissingMiniPrivateKeyViewModel.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ public MissingMiniPrivateKeyViewModel()
5050
public override string Description =>
5151
$"This option can recover missing characters in a mini private key." +
5252
$"{Environment.NewLine}" +
53-
$"Enter the mini key (22 or 30 characters long starting with S) in first box while replacing its missing " +
53+
$"Enter the mini key (22 or 26 or 30 characters long starting with S) in first box while replacing its missing " +
5454
$"characters with the specified {nameof(MissingChar)} and enter the " +
5555
$"corresponding address in second box and click Find button.";
5656

Src/FinderOuter/ViewModels/MissingMnemonicViewModel.cs

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,12 +52,13 @@ public MissingMnemonicViewModel()
5252

5353

5454
public override string OptionName => "Missing Mnemonic";
55-
public override string Description => $"This option is useful for recovering mnemonics (seed phrases) that are missing " +
56-
$"some words. Enter words that are known and replace the missing ones with the symbol defined by " +
55+
public override string Description => $"This option is useful for recovering mnemonics (seed phrases) that are " +
56+
$"missing some words. It supports both BIP39 and Electrum standards.{Environment.NewLine}" +
57+
$"Enter words that are known and replace the missing ones with the symbol defined by " +
5758
$"{nameof(MissingChar)} parameter.{Environment.NewLine}" +
5859
$"The key index is the zero-based index of the entered key/address (first address is 0, second is 1,...)" +
5960
$"{Environment.NewLine}" +
60-
$"The path is the BIP-32 defined path of the child extended key (eg. m/44'/0'/0')";
61+
$"The path is the full BIP-32 defined path of the child key (eg. m/44'/0'/0'/0)";
6162

6263
public MnemonicSevice MnService { get; }
6364

Src/FinderOuter/Views/MissingMiniPrivateKeyView.xaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
</StackPanel>
2828

2929
<TextBox Text="{Binding ExtraInput}"
30-
Watermark="Extra input to check against (address)"
30+
Watermark="Extra input to check against (address, or public key)"
3131
Grid.Column="0"
3232
Grid.Row="1"/>
3333
<ComboBox Items="{Binding ExtraInputTypeList}"

0 commit comments

Comments
 (0)