Example #1
0
 public async Task ImportKeyAsync(string key, string label = null, bool isPublic = true)
 {
     await ImportKeyAsync(ECKey.FromWalletImportFormat(key), label, isPublic);
 }
Example #2
0
 public PrivateKeyDetails(string key, string label = null) : this(ECKey.FromWalletImportFormat(key), label)
 {
 }