public Task <TransactionReceipt> SetContactInformationRequestAndWaitForReceiptAsync(string info, CancellationTokenSource cancellationToken = null)
        {
            var setContactInformationFunction = new SetContactInformationFunction();

            setContactInformationFunction.Info = info;

            return(ContractHandler.SendRequestAndWaitForReceiptAsync(setContactInformationFunction, cancellationToken));
        }
        public Task <string> SetContactInformationRequestAsync(string info)
        {
            var setContactInformationFunction = new SetContactInformationFunction();

            setContactInformationFunction.Info = info;

            return(ContractHandler.SendRequestAsync(setContactInformationFunction));
        }
 public Task <TransactionReceipt> SetContactInformationRequestAndWaitForReceiptAsync(SetContactInformationFunction setContactInformationFunction, CancellationTokenSource cancellationToken = null)
 {
     return(ContractHandler.SendRequestAndWaitForReceiptAsync(setContactInformationFunction, cancellationToken));
 }
 public Task <string> SetContactInformationRequestAsync(SetContactInformationFunction setContactInformationFunction)
 {
     return(ContractHandler.SendRequestAsync(setContactInformationFunction));
 }