Ejemplo n.º 1
0
 public Task CreatePrivateKey(string address, string privateKey)
 {
     return(_storage.InsertAsync(KeyEntity.Create(address, privateKey)));
 }
Ejemplo n.º 2
0
        public async Task <string> GetPrivateKey(string address)
        {
            var entity = await _storage.GetDataAsync(KeyEntity.GeneratePartitionKey(), address);

            return(entity?.PrivateKey);
        }