ton-provider-system 0.1.4 → 0.1.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js CHANGED
@@ -1364,6 +1364,7 @@ var TokenBucketRateLimiter = class {
1364
1364
  );
1365
1365
  }
1366
1366
  this.tokens = 0;
1367
+ this.lastRefill = Date.now();
1367
1368
  this.logger.warn(`Rate limit hit, backoff: ${this.currentBackoff}ms, errors: ${this.consecutiveErrors}`);
1368
1369
  }
1369
1370
  /**
@@ -1896,7 +1897,8 @@ var _ProviderManager = class _ProviderManager {
1896
1897
  this.rateLimiter = createRateLimiterManager(this.options.logger);
1897
1898
  for (const provider of this.registry.getAllProviders()) {
1898
1899
  const config2 = getRateLimitForType(provider.type);
1899
- const minDelayMs = Math.ceil(1e3 / provider.rps * 1.1);
1900
+ const bufferMultiplier = provider.rps <= 3 ? 1.2 : 1.1;
1901
+ const minDelayMs = Math.ceil(1e3 / provider.rps * bufferMultiplier);
1900
1902
  let burstSize;
1901
1903
  if (provider.rps <= 3) {
1902
1904
  burstSize = 1;