@@ -17,27 +17,27 @@ public interface RequestQueueManager extends AutoCloseable {
17
17
* Is used by default when no API KEY is provided
18
18
*/
19
19
static RequestQueueManager anonymous () {
20
- return new SemaphoreRequestQueueManager (1 , Duration .ofMillis (5005L ));
20
+ return new SemaphoreRequestQueueManager (1 , Duration .ofMillis (5015L ));
21
21
}
22
22
23
23
/**
24
24
* Is available for all registered free API KEYs
25
25
* <a href="https://docs.etherscan.io/getting-started/viewing-api-usage-statistics">Free API KEY</a>
26
26
*/
27
27
static RequestQueueManager planFree () {
28
- return new SemaphoreRequestQueueManager (5 , Duration .ofMillis (1005L ));
28
+ return new SemaphoreRequestQueueManager (5 , Duration .ofMillis (1015L ));
29
29
}
30
30
31
31
static RequestQueueManager planStandard () {
32
- return new SemaphoreRequestQueueManager (10 , Duration .ofMillis (1005L ));
32
+ return new SemaphoreRequestQueueManager (10 , Duration .ofMillis (1015L ));
33
33
}
34
34
35
35
static RequestQueueManager planAdvanced () {
36
- return new SemaphoreRequestQueueManager (20 , Duration .ofMillis (1005L ));
36
+ return new SemaphoreRequestQueueManager (20 , Duration .ofMillis (1015L ));
37
37
}
38
38
39
39
static RequestQueueManager planProfessional () {
40
- return new SemaphoreRequestQueueManager (30 , Duration .ofMillis (1005L ));
40
+ return new SemaphoreRequestQueueManager (30 , Duration .ofMillis (1015L ));
41
41
}
42
42
43
43
static RequestQueueManager unlimited () {
0 commit comments