public Task <TransactionReceipt> SendRewardTokenRequestAndWaitForReceiptAsync(string recipient, BigInteger amount, CancellationTokenSource cancellationToken = null)
        {
            var sendRewardTokenFunction = new SendRewardTokenFunction();

            sendRewardTokenFunction.Recipient = recipient;
            sendRewardTokenFunction.Amount    = amount;

            return(ContractHandler.SendRequestAndWaitForReceiptAsync(sendRewardTokenFunction, cancellationToken));
        }
        public Task <string> SendRewardTokenRequestAsync(string recipient, BigInteger amount)
        {
            var sendRewardTokenFunction = new SendRewardTokenFunction();

            sendRewardTokenFunction.Recipient = recipient;
            sendRewardTokenFunction.Amount    = amount;

            return(ContractHandler.SendRequestAsync(sendRewardTokenFunction));
        }
 public Task <TransactionReceipt> SendRewardTokenRequestAndWaitForReceiptAsync(SendRewardTokenFunction sendRewardTokenFunction, CancellationTokenSource cancellationToken = null)
 {
     return(ContractHandler.SendRequestAndWaitForReceiptAsync(sendRewardTokenFunction, cancellationToken));
 }
 public Task <string> SendRewardTokenRequestAsync(SendRewardTokenFunction sendRewardTokenFunction)
 {
     return(ContractHandler.SendRequestAsync(sendRewardTokenFunction));
 }