public static OrderInfo CreateOrder(string destinationBitcoinAddress, double destinationBitcoinAmount) { return(RestWebClient.Post <OrderInfo>("order_create", new OrderCreation(destinationBitcoinAddress, destinationBitcoinAmount))); }
public static OrderInfo QueryOrderInfo(string orderId) { return(RestWebClient.Post <OrderInfo>("order_status_query", new OrderIdContainer(orderId))); }