コード例 #1
0
ファイル: EthTLSService.cs プロジェクト: huyen-pk/Nethereum
 public Task <string> CommitRequestAsync(byte[] commitment)
 {
     return(TLSRegistrarControllerService.CommitRequestAsync(commitment));
 }
コード例 #2
0
ファイル: EthTLSService.cs プロジェクト: huyen-pk/Nethereum
        public async Task <string> CommitRequestAsync(string name, string owner, string secret)
        {
            var commitment = await CalculateCommitmentAsync(name, owner, secret).ConfigureAwait(false);

            return(await TLSRegistrarControllerService.CommitRequestAsync(commitment));
        }