We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[X] bug report [ ] feature request
L2 does not support eth_getLogs with ranges more than 5000. As a result bundler fails to spin up for test/main networks
error could be of the form
/opt/optimism/packages/boba/bundler/bundler.js:2 ...
or
{"jsonrpc":"2.0","error":{"code":-32000,"message":"exceed maximum block range: 5000"},"id":48}\n', error: Error: exceed maximum block range: 5000
The reason for the error is here: https://github.com/bobanetwork/boba/blob/develop/packages/boba/bundler/src/modules/EventsManager.ts#L42
Bundler starts and runs for networks with eth_getLogs limits
Find a way to accomodate the bundler requests within the specified 5k range
Can use: a local memory counter for the current read counter and for when it starts the first time/ restarts split it into 5000 block requests
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Issue Type
Current Behavior
L2 does not support eth_getLogs with ranges more than 5000. As a result bundler fails to spin up for test/main networks
error could be of the form
or
The reason for the error is here: https://github.com/bobanetwork/boba/blob/develop/packages/boba/bundler/src/modules/EventsManager.ts#L42
Expected Behavior
Bundler starts and runs for networks with eth_getLogs limits
Steps to Reproduce
Suggested Fix
Find a way to accomodate the bundler requests within the specified 5k range
Can use: a local memory counter for the current read counter
and for when it starts the first time/ restarts split it into 5000 block requests
The text was updated successfully, but these errors were encountered: