-
Notifications
You must be signed in to change notification settings - Fork 1
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
Conversation
There was a problem hiding this 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) |
There was a problem hiding this comment.
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?
There was a problem hiding this comment.
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
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 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
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 clientop
: it when you ask for last finalized block do a call to a op_node using rpc method:optimism_syncStatus
to get itConfiguration
Remove old L2URL configuration fields:
AggOracle.EVMSender.URLRPCL2
AggSender.URLRPCL2
The simplied version of configuration remains the same: setting
L2URL
it's enough:L2URL
is the legacy configuration parameterL2RPC
:L2RPC = "{ Mode= \"basic\", URL= \"{{L2URL}}\" }"
Common.L2RPC
Common.L2RPC
that is a struct that can be:L2RPC = { Mode= "basic", URL= "http://localhost:8123" }
L2RPC = { Mode= "op", URL= "http://localhost:1111" , OpNodeURL ="http://localhost:2222" }
By default is: