예제 #1
0
        public Task <TransactionReceipt> FlushEtherRequestAndWaitForReceiptAsync(List <string> forwarders, CancellationTokenSource cancellationToken = null)
        {
            var flushEtherFunction = new FlushEtherFunction();

            flushEtherFunction.Forwarders = forwarders;

            return(ContractHandler.SendRequestAndWaitForReceiptAsync(flushEtherFunction, cancellationToken));
        }
예제 #2
0
        public Task <string> FlushEtherRequestAsync(List <string> forwarders)
        {
            var flushEtherFunction = new FlushEtherFunction();

            flushEtherFunction.Forwarders = forwarders;

            return(ContractHandler.SendRequestAsync(flushEtherFunction));
        }
예제 #3
0
 public Task <TransactionReceipt> FlushEtherRequestAndWaitForReceiptAsync(FlushEtherFunction flushEtherFunction, CancellationTokenSource cancellationToken = null)
 {
     return(ContractHandler.SendRequestAndWaitForReceiptAsync(flushEtherFunction, cancellationToken));
 }
예제 #4
0
 public Task <string> FlushEtherRequestAsync(FlushEtherFunction flushEtherFunction)
 {
     return(ContractHandler.SendRequestAsync(flushEtherFunction));
 }