public Task <TransactionReceipt> RemoveAtIndexRequestAndWaitForReceiptAsync(BigInteger index, CancellationTokenSource cancellationToken = null)
        {
            var removeAtIndexFunction = new RemoveAtIndexFunction();

            removeAtIndexFunction.Index = index;

            return(ContractHandler.SendRequestAndWaitForReceiptAsync(removeAtIndexFunction, cancellationToken));
        }
        public Task <string> RemoveAtIndexRequestAsync(BigInteger index)
        {
            var removeAtIndexFunction = new RemoveAtIndexFunction();

            removeAtIndexFunction.Index = index;

            return(ContractHandler.SendRequestAsync(removeAtIndexFunction));
        }
 public Task <TransactionReceipt> RemoveAtIndexRequestAndWaitForReceiptAsync(RemoveAtIndexFunction removeAtIndexFunction, CancellationTokenSource cancellationToken = null)
 {
     return(ContractHandler.SendRequestAndWaitForReceiptAsync(removeAtIndexFunction, cancellationToken));
 }
 public Task <string> RemoveAtIndexRequestAsync(RemoveAtIndexFunction removeAtIndexFunction)
 {
     return(ContractHandler.SendRequestAsync(removeAtIndexFunction));
 }