Example #1
0
        public Task <TransactionReceipt> SetDescendantRequestAndWaitForReceiptAsync(string descendant, CancellationTokenSource cancellationToken = null)
        {
            var setDescendantFunction = new SetDescendantFunction();

            setDescendantFunction.Descendant = descendant;

            return(ContractHandler.SendRequestAndWaitForReceiptAsync(setDescendantFunction, cancellationToken));
        }
Example #2
0
        public Task <string> SetDescendantRequestAsync(string descendant)
        {
            var setDescendantFunction = new SetDescendantFunction();

            setDescendantFunction.Descendant = descendant;

            return(ContractHandler.SendRequestAsync(setDescendantFunction));
        }
Example #3
0
 public Task <TransactionReceipt> SetDescendantRequestAndWaitForReceiptAsync(SetDescendantFunction setDescendantFunction, CancellationTokenSource cancellationToken = null)
 {
     return(ContractHandler.SendRequestAndWaitForReceiptAsync(setDescendantFunction, cancellationToken));
 }
Example #4
0
 public Task <string> SetDescendantRequestAsync(SetDescendantFunction setDescendantFunction)
 {
     return(ContractHandler.SendRequestAsync(setDescendantFunction));
 }