File tree 1 file changed +5
-5
lines changed
src/main/java/io/goodforgod/api/etherscan/manager
1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -16,16 +16,16 @@ public interface RequestQueueManager extends AutoCloseable {
16
16
/**
17
17
* Is used by default when no API KEY is provided
18
18
*/
19
- RequestQueueManager ANONYMOUS = new SemaphoreRequestQueueManager (1 , Duration .ofMillis (5010L ));
19
+ RequestQueueManager ANONYMOUS = new SemaphoreRequestQueueManager (1 , Duration .ofMillis (5015L ));
20
20
21
21
/**
22
22
* Is available for all registered free API KEYs
23
23
* <a href="https://docs.etherscan.io/getting-started/viewing-api-usage-statistics">Free API KEY</a>
24
24
*/
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 ));
29
29
30
30
RequestQueueManager UNLIMITED = new FakeRequestQueueManager ();
31
31
You can’t perform that action at this time.
0 commit comments