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

Update EIP-7623: Clarify the gas refunds handling #9227

Merged
merged 1 commit into from
Jan 9, 2025

Conversation

chfast
Copy link
Member

@chfast chfast commented Jan 9, 2025

Previously, the evm_gas_used (now renamed to execution_gas_used) was not specified. This lead to two different interpretations whenever the execution_gas_used was the value after or before applying refunds.

We argue that the interpretation that execution_gas_used don't have refunds subtracted is incorrect because it would make the "current" formula for the tx.gasUsed incomplete and confusing as the total gas used by a transaction would actually be tx.gasUsed - refunds.

Using this reasoning, this change clarifies the specification by following the interpretation that the execution_gas_used is the value after the refunds are applied.

Previously, the `evm_gas_used` (now renamed to `execution_gas_used`)
was not specified. This lead to two different interpretations whenever
the `execution_gas_used` was the value after or before applying refunds.

We argue that the interpretation that `execution_gas_used` don't
have refunds subtracted is incorrect because it would make the "current"
formula for the `tx.gasUsed` incomplete and confusing as the total gas
used by a transaction would actually be `tx.gasUsed - refunds`.

Using this reasoning, this change clarifies the specification
by following the interpretation that the `execution_gas_used` is
the value after the refunds are applied.
@chfast chfast requested a review from eth-bot as a code owner January 9, 2025 09:35
@github-actions github-actions bot added c-update Modifies an existing proposal s-review This EIP is in Review t-core labels Jan 9, 2025
@eth-bot
Copy link
Collaborator

eth-bot commented Jan 9, 2025

✅ All reviewers have approved.

@eth-bot eth-bot added the a-review Waiting on author to review label Jan 9, 2025
Copy link
Contributor

@nerolation nerolation left a comment

Choose a reason for hiding this comment

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

Agree yeah, this makes sense!

@eth-bot eth-bot enabled auto-merge (squash) January 9, 2025 10:51
Copy link
Collaborator

@eth-bot eth-bot left a comment

Choose a reason for hiding this comment

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

All Reviewers Have Approved; Performing Automatic Merge...

@eth-bot eth-bot merged commit 6b5c7cf into ethereum:master Jan 9, 2025
10 checks passed
@chfast chfast deleted the eip-7623-refunds branch January 9, 2025 11:01
Copy link
Member

@jochem-brouwer jochem-brouwer left a comment

Choose a reason for hiding this comment

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

Cannot re-approve since this is already merged, but have given this some thought since EthJS applied the refund after applying the formula. I now believe this is incorrect:

I indeed agree that it makes more sense to apply the execution refund before applying the max formula. Otherwise it is possible to somewhat "game" the gas system by getting refunds and then getting cheaper calldata txs.

The simplest way to do this (assuming EIP 7702 is included) is to send an authorization tx together with the calldata, where the authorization fields delegate accounts which already exists. This (currently) yields 12500 refund, so packing these two together with the calldata tx will give 12500 "refund" on the calldata gas when it should definitely not be applied (the floor price of the calldata gas should be paid).

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
a-review Waiting on author to review c-update Modifies an existing proposal s-review This EIP is in Review t-core
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants