Пример #1
0
        public Task <TransactionReceipt> RemoveAllowedSenderRequestAndWaitForReceiptAsync(string sender, CancellationTokenSource cancellationToken = null)
        {
            var removeAllowedSenderFunction = new RemoveAllowedSenderFunction();

            removeAllowedSenderFunction.Sender = sender;

            return(ContractHandler.SendRequestAndWaitForReceiptAsync(removeAllowedSenderFunction, cancellationToken));
        }
Пример #2
0
        public Task <string> RemoveAllowedSenderRequestAsync(string sender)
        {
            var removeAllowedSenderFunction = new RemoveAllowedSenderFunction();

            removeAllowedSenderFunction.Sender = sender;

            return(ContractHandler.SendRequestAsync(removeAllowedSenderFunction));
        }
Пример #3
0
 public Task <TransactionReceipt> RemoveAllowedSenderRequestAndWaitForReceiptAsync(RemoveAllowedSenderFunction removeAllowedSenderFunction, CancellationTokenSource cancellationToken = null)
 {
     return(ContractHandler.SendRequestAndWaitForReceiptAsync(removeAllowedSenderFunction, cancellationToken));
 }
Пример #4
0
 public Task <string> RemoveAllowedSenderRequestAsync(RemoveAllowedSenderFunction removeAllowedSenderFunction)
 {
     return(ContractHandler.SendRequestAsync(removeAllowedSenderFunction));
 }