@@ -16,16 +16,16 @@ public interface RequestQueueManager extends AutoCloseable {
1616/**
1717 * Is used by default when no API KEY is provided
1818 */
19- RequestQueueManager ANONYMOUS =new SemaphoreRequestQueueManager (1 ,Duration .ofMillis (5010L ));
19+ RequestQueueManager ANONYMOUS =new SemaphoreRequestQueueManager (1 ,Duration .ofMillis (5015L ));
2020
2121/**
2222 * Is available for all registered free API KEYs
2323 * <a href="https://docs.etherscan.io/getting-started/viewing-api-usage-statistics">Free API KEY</a>
2424 */
25- RequestQueueManager FREE_PLAN =new SemaphoreRequestQueueManager (5 ,Duration .ofMillis (1010L ));
26- RequestQueueManager STANDARD_PLAN =new SemaphoreRequestQueueManager (10 ,Duration .ofMillis (1010L ));
27- RequestQueueManager ADVANCED_PLAN =new SemaphoreRequestQueueManager (20 ,Duration .ofMillis (1010L ));
28- RequestQueueManager PROFESSIONAL_PLAN =new SemaphoreRequestQueueManager (30 ,Duration .ofMillis (1010L ));
25+ RequestQueueManager FREE_PLAN =new SemaphoreRequestQueueManager (5 ,Duration .ofMillis (1015L ));
26+ RequestQueueManager STANDARD_PLAN =new SemaphoreRequestQueueManager (10 ,Duration .ofMillis (1015L ));
27+ RequestQueueManager ADVANCED_PLAN =new SemaphoreRequestQueueManager (20 ,Duration .ofMillis (1015L ));
28+ RequestQueueManager PROFESSIONAL_PLAN =new SemaphoreRequestQueueManager (30 ,Duration .ofMillis (1015L ));
2929
3030RequestQueueManager UNLIMITED =new FakeRequestQueueManager ();
3131