We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6fa7ae4 commit 295dc90Copy full SHA for 295dc90
src/ethereum/networkAdapters/EvmScanAdapter.ts
@@ -325,7 +325,9 @@ export class EvmScanAdapter extends NetworkAdapter<EvmScanAdapterConfig> {
325
'status' in cleanData &&
326
cleanData.status === '0' &&
327
typeof cleanData.result === 'string' &&
328
- cleanData.result.match(/Max calls|rate limit/) != null
+ (cleanData.result.match(/Max calls|rate limit/) != null ||
329
+ cleanData.result.match(/Free API access is temporarily unavailable/) !=
330
+ null)
331
) {
332
throw new RateLimitError(`fetchGetEtherscan rate limit for ${server}`)
333
}
0 commit comments