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.
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
fix: blob fees #11029
base: master
Are you sure you want to change the base?
fix: blob fees #11029
Changes from 8 commits
8484168
eb311d5
86b6693
53b354e
ce614fe
e7b3f71
aa4e4a9
dc303b4
258a904
9981f97
36b6582
6e9e8ac
83c27f9
c286d82
39de22e
a6a6308
7b92aaf
d1442f7
c4783eb
e553adc
db53a66
5e73f7e
3bb7df0
aa0e244
5737628
9a4fef2
1da6523
11e448c
b04b1b1
379e286
6e95160
9fd9ec2
cfbe1d0
89d1ec5
9d1e93d
7140c1e
da68f1a
dec90b6
45ee7f8
File filter
Filter by extension
Conversations
Jump to
There are no files selected for viewing
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.
Curious: why is this? Does
eth_estimateGas
return both the execution gas and the blob gas mixed up together?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.
it seems in our
estimateGas
, we have to useprepareTransactionRequest
to get a full estimation, which does increase a lot compared toestimateGas
so I assumed that includes the blob gasThere 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.
I understand we should be increasing the blob base fee to 12.5% per stall time in blocks, as we do with the base fee (see here).
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.
Sorry I didn't catch this one earlier, but I believe we're missing the check to not go over
gasConfig.maxGwei
with the blob fee. Given we're duplicating it on every attempt, let's make sure it's in there.