Example #1
0
 /// <summary>
 /// Requests a quote for an exchange without exchanging.
 /// </summary>
 /// <param name="Pair">Coin pair to exchange between.</param>
 /// <param name="Amount">Amount of coin to be sent to withdrawal address.</param>
 /// <returns>Quote for exchange information.</returns>
 public static async Task <QuoteRequest> RequestQuoteAsync(string Pair, double Amount) =>
 await QuoteRequest.RequestAsync(Pair, Amount).ConfigureAwait(false);