public PrivateKeyDetails(ECKey key, string label = null) { PrivateKey = key; Label = label; }
public async Task ImportKeyAsync(ECKey key, string label, bool isPublic = true) { await ImportKeyAsync(new PrivateKeyDetails(key, label), isPublic); }
public void Insert(int i, ECKey key) { Insert(i, new PrivateKeyDetails(key)); }
public async Task<PrivateKeyDetails> GenerateAddressAsync(string label = null, bool isPublic = true) { var key = new ECKey(); var details = new PrivateKeyDetails(key, label); await ImportKeyAsync(details); return details; }
public void Add(ECKey key, string label = null) { Add(new PrivateKeyDetails(key, label)); }