Validate max block range eth_getLogs RPC#1794
Merged
RomarQ merged 5 commits intopolkadot-evm:masterfrom Jan 7, 2026
Merged
Conversation
RomarQ
approved these changes
Jan 7, 2026
RomarQ
requested changes
Jan 7, 2026
RomarQ
reviewed
Jan 7, 2026
RomarQ
reviewed
Jan 7, 2026
RomarQ
reviewed
Jan 7, 2026
RomarQ
approved these changes
Jan 7, 2026
alstjd0921
added a commit
to bifrost-platform/bifrost-frontier
that referenced
this pull request
Feb 2, 2026
Merge upstream frontier master (polkadot-sdk stable2512 compatible). This brings 43 commits including: - Update to polkadot-sdk stable2512 (polkadot-evm#1796) - Add support for EIP-7825, EIP-7823, EIP-7883, EIP-7939 (Osaka fork) - Validate max block range eth_getLogs RPC (polkadot-evm#1794) - Extend EthereumBlockNotification with reorg info (polkadot-evm#1787) Bifrost customizations preserved: - view_call: Read-only EVM calls without nonce modification - call_as_internal_call: Internal EVM calls for fee payment operations - FeelessCallFilter: Gas-free EVM call support - ERC20 fee payment (NODE-194) - Debug/trace RPC extensions (NODE-190, NODE-193) - Custom web3_clientVersion format (NODE-84) - logs_request_timeout parameter Conflicts resolved: - frame/evm/src/runner/mod.rs: Added both create_force_address and Bifrost methods - frame/evm/src/runner/stack.rs: Added both create_force_address and Bifrost methods - client/rpc/src/eth/filter.rs: Kept both logs_request_timeout and max_block_range Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Adds a cli parameter named
--max-block-range <RANGE>for customising the block range limit when queryingeth_getLogsRPC, the default value is1024blocks. Trying to queryeth_getLogsfor a block range higher than1024will result in the following error message:block range is too wide (maximum 1024).ref: moonbeam-foundation/frontier/pull/245