@@ -17,27 +17,27 @@ public interface RequestQueueManager extends AutoCloseable {
1717 * Is used by default when no API KEY is provided
1818 */
1919static RequestQueueManager anonymous () {
20- return new SemaphoreRequestQueueManager (1 ,Duration .ofMillis (5005L ));
20+ return new SemaphoreRequestQueueManager (1 ,Duration .ofMillis (5015L ));
2121 }
2222
2323/**
2424 * Is available for all registered free API KEYs
2525 * <a href="https://docs.etherscan.io/getting-started/viewing-api-usage-statistics">Free API KEY</a>
2626 */
2727static RequestQueueManager planFree () {
28- return new SemaphoreRequestQueueManager (5 ,Duration .ofMillis (1005L ));
28+ return new SemaphoreRequestQueueManager (5 ,Duration .ofMillis (1015L ));
2929 }
3030
3131static RequestQueueManager planStandard () {
32- return new SemaphoreRequestQueueManager (10 ,Duration .ofMillis (1005L ));
32+ return new SemaphoreRequestQueueManager (10 ,Duration .ofMillis (1015L ));
3333 }
3434
3535static RequestQueueManager planAdvanced () {
36- return new SemaphoreRequestQueueManager (20 ,Duration .ofMillis (1005L ));
36+ return new SemaphoreRequestQueueManager (20 ,Duration .ofMillis (1015L ));
3737 }
3838
3939static RequestQueueManager planProfessional () {
40- return new SemaphoreRequestQueueManager (30 ,Duration .ofMillis (1005L ));
40+ return new SemaphoreRequestQueueManager (30 ,Duration .ofMillis (1015L ));
4141 }
4242
4343static RequestQueueManager unlimited () {