1
0
mirror of https://github.com/JKorf/CryptoExchange.Net.git synced 2026-08-20 04:42:57 +00:00

Added nonce provider default implementation

This commit is contained in:
Jkorf
2021-09-20 15:23:12 +02:00
parent f9957cba16
commit 2ea48d6de9
4 changed files with 91 additions and 10 deletions
@@ -100,5 +100,11 @@ namespace CryptoExchange.Net.Interfaces
/// <param name="type">The type</param>
/// <returns>Average fill price</returns>
CallResult<decimal> CalculateAverageFillPrice(decimal quantity, OrderBookEntryType type);
/// <summary>
/// String representation of the top x entries
/// </summary>
/// <returns></returns>
string ToString(int rows);
}
}