1
0
mirror of https://github.com/JKorf/CryptoExchange.Net.git synced 2026-08-14 09:52:53 +00:00
Files
CryptoExchange.Net/CryptoExchange.Net/Interfaces/INonceProvider.cs
T
2021-09-20 15:23:12 +02:00

15 lines
397 B
C#

namespace CryptoExchange.Net.Interfaces
{
/// <summary>
/// A provider for a nonce value used when signing requests
/// </summary>
public interface INonceProvider
{
/// <summary>
/// Get nonce value. Nonce value should be unique and incremental for each call
/// </summary>
/// <returns>Nonce value</returns>
long GetNonce();
}
}