This repository has been archived by the owner on Aug 16, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 312
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[3.0.8.0] Added ability to scan through available accounts (#4222)
* Added ledger support * Fixed block explorer * Added CL args * Added a flag to ignore balance check * Fixed explorer test * Minor changes as per feedback * Minor changes as per feedback * Added global.json to lock the version * DOwngraded to 2.1 * Removed unused tests * Added keypath param for advanced users * Fixed address scanning * Fix for index * Added more logs * Added more logs * Added logic to scan change addresses * Added more logs Co-authored-by: Igor Goldobin <[email protected]>
- Loading branch information
Showing
4 changed files
with
109 additions
and
20 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,15 @@ | ||
namespace AddressOwnershipTool | ||
{ | ||
public class AddressCheckResult | ||
{ | ||
public AddressCheckResult(bool hasBalance, bool hasActivity) | ||
{ | ||
this.HasActivity = hasActivity; | ||
this.HasBalance = hasBalance; | ||
} | ||
|
||
public bool HasBalance { get; set; } | ||
|
||
public bool HasActivity { get; set; } | ||
} | ||
} |
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
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
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