-
Notifications
You must be signed in to change notification settings - Fork 123
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
Add detection of Arbos Version to the evaluation of IsPrauge #434
base: master
Are you sure you want to change the base?
Conversation
This way we can enable the features for Prauge when the Arbos version is upgraded on chain instead of at some particular block number or block time. Part of: NIT-3139 and NIT-3173
This function returns a Signer which should be used on Arbitrum chains for any state-transition affecting code paths. This signer becomes a normal go-ethereum signer when ArbOs is not enabled. Part of: NIT-3139
In most places in the go-ethereum codebase where MakeSigner is clled, there is a header or a blockContext availble from which one can easily derive an arbosVersion. In all of those places, providing an accurate arbosVersion makes the signer more stable than the one returned from MakeSigner which uses a hard-coded `params.MaxArbosVersionSupported`. We have carefully documented the reasoning for why we think each of the contexts where we left calls to MakeSigner should be fine to use an Arbitrum signer initialized with the `MaxArbosVersionSupported` value in https://www.notion.so/arbitrum/MakeSiger-vs-VersionedArbitrumSigner-1c401a3f59f880eb84bded5e721e2647?pvs=4
The advantage of adding an argument to the MakeSigner function rather than creating a new VersionedArbitrumSigner function is that new calls to MakeSigner in the upstream go-ethereum project will immediately cause conflicts that will have to be resolved during merges which will cause us to think deeply about whether or not we have an appropraite arbos version to pass in to the function call.
Assigning to @tsahee to provide |
Essentially, the arbitrum chains do not support anything analogous to the L1 ethereum consensus layer. So, there is no need to perform special handling for those requests when running arbitrum nodes.
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.
two minor comments, can be done in separate PR
if b.cm.config.IsPrague(b.header.Number, b.header.Time) { | ||
blockContext := NewEVMBlockContext(b.header, b.cm, &b.header.Coinbase) | ||
// Arbitrum doesn't support Deposit, Withdrawal, or Consolidation requests. | ||
if !b.cm.config.IsArbitrum() && b.cm.config.IsPrague(b.header.Number, b.header.Time, blockContext.ArbOSVersion) { |
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.
creation of redundant BlockContext (can just deserialise header)
This way we can enable the features for Prauge when the Arbos version is
upgraded on chain instead of at some particular block number or block time.
Part of: NIT-3139 and NIT-3173