Skip to content

Commit 8bcdfae

Browse files
Improve Base58VM description.
1 parent 1e7817b commit 8bcdfae

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

Src/FinderOuter/ViewModels/MissingBase58ViewModel.cs

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,14 @@ public MissingBase58ViewModel()
3434

3535

3636
public override string OptionName => "Missing Base58";
37-
public override string Description => $"Helps you recover missing base-58 characters in any base-58 encoded strings that " +
38-
$"has a checksum. Examples are private keys, extended pub/priv keys, addresses,...{Environment.NewLine}" +
39-
$"Enter the base-58 string and replace its missing characters with the symbol defined by {nameof(MissingChar)} " +
40-
$"parameter and press Find.";
37+
public override string Description => $"If you have a base-58 encoded string with a checksum (such as private key WIFs) " +
38+
$"that is missing some characters and you know the location of these missing characters (eg. a damaged paper wallet) " +
39+
$"you can use this option to recover it.{Environment.NewLine}" +
40+
$"All you have to do is to enter the base-58 string below and replace its missing characters with the symbol " +
41+
$"defined by {nameof(MissingChar)} parameter and press Find.{Environment.NewLine}" +
42+
$"Exception: if you have a compressed private key missing 3 characters, there is no need to use " +
43+
$"{nameof(MissingChar)} parameter anymore, just enter the {Constants.PrivKeyCompWifLen - 3} characters you have" +
44+
$" and press find.";
4145

4246

4347
private readonly Base58Sevice b58Service;

0 commit comments

Comments
 (0)