コード例 #1
0
        public Task <TransactionReceipt> RefundPoToBuyerRequestAndWaitForReceiptAsync(ulong ethPoNumber, CancellationTokenSource cancellationToken = null)
        {
            var refundPoToBuyerFunction = new RefundPoToBuyerFunction();

            refundPoToBuyerFunction.EthPoNumber = ethPoNumber;

            return(ContractHandler.SendRequestAndWaitForReceiptAsync(refundPoToBuyerFunction, cancellationToken));
        }
コード例 #2
0
        public Task <string> RefundPoToBuyerRequestAsync(ulong ethPoNumber)
        {
            var refundPoToBuyerFunction = new RefundPoToBuyerFunction();

            refundPoToBuyerFunction.EthPoNumber = ethPoNumber;

            return(ContractHandler.SendRequestAsync(refundPoToBuyerFunction));
        }
コード例 #3
0
 public Task <TransactionReceipt> RefundPoToBuyerRequestAndWaitForReceiptAsync(RefundPoToBuyerFunction refundPoToBuyerFunction, CancellationTokenSource cancellationToken = null)
 {
     return(ContractHandler.SendRequestAndWaitForReceiptAsync(refundPoToBuyerFunction, cancellationToken));
 }
コード例 #4
0
 public Task <string> RefundPoToBuyerRequestAsync(RefundPoToBuyerFunction refundPoToBuyerFunction)
 {
     return(ContractHandler.SendRequestAsync(refundPoToBuyerFunction));
 }