Add more logs, 95%ram alert for GmxMarkets, Proxy retry 2times max

This commit is contained in:
2025-10-11 13:43:32 +07:00
parent b6a4c7661f
commit e917edd939
3 changed files with 16 additions and 7 deletions

View File

@@ -21,8 +21,8 @@ namespace Managing.Infrastructure.Evm.Services
public class Web3ProxySettings
{
public string BaseUrl { get; set; } = "http://localhost:3000";
public int MaxRetryAttempts { get; set; } = 3;
public int RetryDelayMs { get; set; } = 1000;
public int MaxRetryAttempts { get; set; } = 2;
public int RetryDelayMs { get; set; } = 2500;
public int TimeoutSeconds { get; set; } = 30;
}