Skip to content
New issue

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

refactor(l1): cleanup the public api of rpc crate #2319

Open
wants to merge 3 commits into
base: main
Choose a base branch
from

Conversation

mpaulucci
Copy link
Collaborator

@mpaulucci mpaulucci commented Mar 26, 2025

Motivation
Having a clean and explicit lib.rs that only exposes necesary functions to the outside

The idea is for every crate:

  • To minimize the functions/objects that are exposed
  • To make them explicit in a centralized location (lib.rs)

Some crates from the workspace are already like this, others are in the process of being refactored.

@mpaulucci mpaulucci requested a review from a team as a code owner March 26, 2025 14:58
Copy link

Lines of code report

Total lines added: 29
Total lines removed: 13
Total lines changed: 42

Detailed view
+-------------------------------------------------------------------+-------+------+
| File                                                              | Lines | Diff |
+-------------------------------------------------------------------+-------+------+
| ethrex/crates/networking/rpc/engine/exchange_transition_config.rs | 66    | +3   |
+-------------------------------------------------------------------+-------+------+
| ethrex/crates/networking/rpc/engine/fork_choice.rs                | 385   | +1   |
+-------------------------------------------------------------------+-------+------+
| ethrex/crates/networking/rpc/engine/mod.rs                        | 51    | +4   |
+-------------------------------------------------------------------+-------+------+
| ethrex/crates/networking/rpc/engine/payload.rs                    | 679   | +1   |
+-------------------------------------------------------------------+-------+------+
| ethrex/crates/networking/rpc/eth/client.rs                        | 31    | +3   |
+-------------------------------------------------------------------+-------+------+
| ethrex/crates/networking/rpc/eth/filter.rs                        | 602   | -1   |
+-------------------------------------------------------------------+-------+------+
| ethrex/crates/networking/rpc/eth/gas_price.rs                     | 140   | -1   |
+-------------------------------------------------------------------+-------+------+
| ethrex/crates/networking/rpc/eth/logs.rs                          | 173   | +1   |
+-------------------------------------------------------------------+-------+------+
| ethrex/crates/networking/rpc/eth/max_priority_fee.rs              | 125   | -1   |
+-------------------------------------------------------------------+-------+------+
| ethrex/crates/networking/rpc/lib.rs                               | 16    | +16  |
+-------------------------------------------------------------------+-------+------+
| ethrex/crates/networking/rpc/rpc.rs                               | 711   | -10  |
+-------------------------------------------------------------------+-------+------+

Copy link
Collaborator

@rodrigo-o rodrigo-o left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looking good, left just a question

Comment on lines +87 to +103
pub storage: Store,
pub blockchain: Arc<Blockchain>,
pub jwt_secret: Bytes,
pub local_p2p_node: Node,
pub local_node_record: NodeRecord,
pub active_filters: ActiveFilters,
pub syncer: Arc<TokioMutex<SyncManager>>,
#[cfg(feature = "based")]
gateway_eth_client: EthClient,
pub gateway_eth_client: EthClient,
#[cfg(feature = "based")]
gateway_auth_client: EngineClient,
pub gateway_auth_client: EngineClient,
#[cfg(feature = "based")]
gateway_pubkey: Public,
pub gateway_pubkey: Public,
#[cfg(feature = "l2")]
valid_delegation_addresses: Vec<Address>,
pub valid_delegation_addresses: Vec<Address>,
#[cfg(feature = "l2")]
sponsor_pk: SecretKey,
pub sponsor_pk: SecretKey,
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nit: What was the reason to make them public? I'm asumming is related to the changes in how other modules import now RpcApiContext but not entirely sure why, I may be missing something.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants