mirror of
https://github.com/JKorf/CryptoExchange.Net
synced 2025-07-06 06:06:30 +00:00
15 lines
397 B
C#
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();
|
|
}
|
|
}
|