Update EIP-8038: Preliminary Accounting Changes#11826
Draft
Helkomine wants to merge 5 commits into
Draft
Conversation
Collaborator
File
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This update introduces a set of revised accounting mechanisms while preserving the opcode pricing values previously established by EIP-8038:
WARM_ACCESSandLOW_WARM_ACCESSto more accurately reflect the cost of warm state accesses.WARM_ACCESSrepresents the cost associated with handling potentialREVERTpaths, whileLOW_WARM_ACCESSrepresents the cost of read-only operations.COLD_ACCOUNT_ACCESS or WARM_ACCESSbecomeWARM_ACCESS + surcharge COLD_ACCOUNT_ACCESSstate_access_gas_reservoir, is introduced to replace the refund counter removed by EIP-7778. Its design is analogous to thestate_gas_reservoirmechanism introduced by EIP-8037.balance_updatedandaccount_updated, are introduced to track account update status more precisely. These sets enable refund accounting for account modifications (CREATE*,*CALL) in a manner analogous toSSTORE.CREATE*and*CALLwith transfer value are charged pessimistically. The maximum state-access charge is paid upfront and may subsequently be refunded when entering the corresponding execution frame if the required conditions are satisfied.