public Task <TransactionReceipt> ReleasePoFundsToSellerRequestAndWaitForReceiptAsync(ulong ethPoNumber, CancellationTokenSource cancellationToken = null)
        {
            var releasePoFundsToSellerFunction = new ReleasePoFundsToSellerFunction();

            releasePoFundsToSellerFunction.EthPoNumber = ethPoNumber;

            return(ContractHandler.SendRequestAndWaitForReceiptAsync(releasePoFundsToSellerFunction, cancellationToken));
        }
        public Task <string> ReleasePoFundsToSellerRequestAsync(ulong ethPoNumber)
        {
            var releasePoFundsToSellerFunction = new ReleasePoFundsToSellerFunction();

            releasePoFundsToSellerFunction.EthPoNumber = ethPoNumber;

            return(ContractHandler.SendRequestAsync(releasePoFundsToSellerFunction));
        }
 public Task <TransactionReceipt> ReleasePoFundsToSellerRequestAndWaitForReceiptAsync(ReleasePoFundsToSellerFunction releasePoFundsToSellerFunction, CancellationTokenSource cancellationToken = null)
 {
     return(ContractHandler.SendRequestAndWaitForReceiptAsync(releasePoFundsToSellerFunction, cancellationToken));
 }
 public Task <string> ReleasePoFundsToSellerRequestAsync(ReleasePoFundsToSellerFunction releasePoFundsToSellerFunction)
 {
     return(ContractHandler.SendRequestAsync(releasePoFundsToSellerFunction));
 }