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

feat: rpc client support op-node finality #299

Merged
merged 15 commits into from
Mar 14, 2025

Conversation

joanestebanr
Copy link
Contributor

@joanestebanr joanestebanr commented Mar 12, 2025

Description

The goal is that aggsender use last finalized block as finality but currently the RPC of L2 is not able to respon to last finalized block. This information is provided by op node using call optimism_syncStatus.

Add a way to choose the kind of L2 RPC client:

  • basic: directly a RPC client
  • op: it when you ask for last finalized block do a call to a op_node using rpc method: optimism_syncStatus to get it

Configuration

  • Remove old L2URL configuration fields:

    • AggOracle.EVMSender.URLRPCL2
    • AggSender.URLRPCL2
  • The simplied version of configuration remains the same: setting L2URL it's enough:

    • The L2URL is the legacy configuration parameter
    • It is inserted in another variable called L2RPC: L2RPC = "{ Mode= \"basic\", URL= \"{{L2URL}}\" }"
    • This variable is set in Common.L2RPC
[Common]
NetworkID = 1
IsValidiumMode = {{IsValidiumMode}}
ContractVersions = "{{ContractVersions}}"
L2RPC = {{L2RPC}}
  • The full configuration have some changes:
    • The L2 client is defined in: Common.L2RPC that is a struct that can be:
        • basic: L2RPC = { Mode= "basic", URL= "http://localhost:8123" }
        • op: L2RPC = { Mode= "op", URL= "http://localhost:1111" , OpNodeURL ="http://localhost:2222" }

By default is:

L2RPC = "{ Mode= \"basic\", URL= \"{{L2URL}}\" }"

@joanestebanr joanestebanr self-assigned this Mar 12, 2025
@joanestebanr joanestebanr marked this pull request as ready for review March 13, 2025 09:05
Copy link
Contributor

@vcastellm vcastellm left a comment

Choose a reason for hiding this comment

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

Removing URLRPCL2 and replacing with L2RPC is great and makes sense, but I feel that the "Mode" adds unnecessary complexity and it's kind of not abstracting what is necessary.

We need to abstract the "FinalizedL2Block" call, in a way that the underlaying implementation is not aware of the node.

Wouldn't it be more easy to just have an interface that declares HeaderByNumber and instantiate either a normal eth client or an op-node client depending on the case?

}
return f.ethRealClient.HeaderByNumber(ctx, new(big.Int).SetUint64(blockInfo.Number))
}
return f.ethRealClient.HeaderByNumber(ctx, number)
Copy link
Contributor

Choose a reason for hiding this comment

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

What happens here when an op mode is used in the L2RPC config? isn't the ethRealClient nil and not configured?

Copy link
Contributor Author

Choose a reason for hiding this comment

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

the opnode is only used to get the finalized block, the rest of calls are send to the regular eth client

@joanestebanr joanestebanr requested a review from vcastellm March 14, 2025 08:24
@joanestebanr
Copy link
Contributor Author

Removing URLRPCL2 and replacing with L2RPC is great and makes sense, but I feel that the "Mode" adds unnecessary complexity and it's kind of not abstracting what is necessary.

We need to abstract the "FinalizedL2Block" call, in a way that the underlaying implementation is not aware of the node.

Wouldn't it be more easy to just have an interface that declares HeaderByNumber and instantiate either a normal eth client or an op-node client depending on the case?

The implementation is to simplify impact in code. The current client can be use by any component that receive a ethClient. So if would fix, not just aggsender issue, also the rest of syncer,etc... So, from my point of view, it's the best abstration possible because it's transparent to rest of code.

The mode is to decide which kind of eth client is required. a 'basic' it's the legacy one, just a call to the RPC configured. But in mode op you need to do a call to op-node to get the latest finalized block but the rest of calls are execute by the regular eth client. Setting explicity recude the possibility of miss configuration

Copy link
Contributor

@goran-ethernal goran-ethernal left a comment

Choose a reason for hiding this comment

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

LGTM

Copy link
Contributor

@vcastellm vcastellm left a comment

Choose a reason for hiding this comment

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

LGTM

@joanestebanr joanestebanr merged commit ad94061 into develop Mar 14, 2025
11 checks passed
@joanestebanr joanestebanr deleted the feature/block_finality_op_node branch March 14, 2025 09:29
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants