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

Add detection of Arbos Version to the evaluation of IsPrauge #434

Open
wants to merge 12 commits into
base: master
Choose a base branch
from

Conversation

eljobe
Copy link
Member

@eljobe eljobe commented Mar 25, 2025

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

eljobe added 2 commits March 25, 2025 10:46
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
rauljordan
rauljordan previously approved these changes Mar 26, 2025
rauljordan
rauljordan previously approved these changes Mar 26, 2025
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
rauljordan
rauljordan previously approved these changes Mar 27, 2025
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.
@eljobe eljobe requested a review from tsahee April 1, 2025 05:33
@eljobe
Copy link
Member Author

eljobe commented Apr 1, 2025

Assigning to @tsahee to provide design-approved label if he's satisfied with the latest changes.

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.
@eljobe eljobe requested a review from tsahee April 2, 2025 14:18
Copy link
Collaborator

@tsahee tsahee left a 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) {
Copy link
Collaborator

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)

@tsahee tsahee removed their assignment Apr 3, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants