Exemplo n.º 1
0
        public Task <TransactionReceipt> TransferInFundsForPoFromBuyerWalletRequestAndWaitForReceiptAsync(BigInteger poNumber, CancellationTokenSource cancellationToken = null)
        {
            var transferInFundsForPoFromBuyerWalletFunction = new TransferInFundsForPoFromBuyerWalletFunction();

            transferInFundsForPoFromBuyerWalletFunction.PoNumber = poNumber;

            return(ContractHandler.SendRequestAndWaitForReceiptAsync(transferInFundsForPoFromBuyerWalletFunction, cancellationToken));
        }
Exemplo n.º 2
0
        public Task <string> TransferInFundsForPoFromBuyerWalletRequestAsync(BigInteger poNumber)
        {
            var transferInFundsForPoFromBuyerWalletFunction = new TransferInFundsForPoFromBuyerWalletFunction();

            transferInFundsForPoFromBuyerWalletFunction.PoNumber = poNumber;

            return(ContractHandler.SendRequestAsync(transferInFundsForPoFromBuyerWalletFunction));
        }
Exemplo n.º 3
0
 public Task <TransactionReceipt> TransferInFundsForPoFromBuyerWalletRequestAndWaitForReceiptAsync(TransferInFundsForPoFromBuyerWalletFunction transferInFundsForPoFromBuyerWalletFunction, CancellationTokenSource cancellationToken = null)
 {
     return(ContractHandler.SendRequestAndWaitForReceiptAsync(transferInFundsForPoFromBuyerWalletFunction, cancellationToken));
 }
Exemplo n.º 4
0
 public Task <string> TransferInFundsForPoFromBuyerWalletRequestAsync(TransferInFundsForPoFromBuyerWalletFunction transferInFundsForPoFromBuyerWalletFunction)
 {
     return(ContractHandler.SendRequestAsync(transferInFundsForPoFromBuyerWalletFunction));
 }