Conversation
The response of the RPC endpoint `eth_getTransactionReceipt` will now return 4 new fields. - `l1GasPrice` - `l1GasUsed` - `l1Fee` - `l1FeeScalar` These fields are added to the database as part of the receipt itself. This means that it is a consensus change as the serialization of the receipt has been updated. This impacts the blockhash because the block header commits to a merkle root of all of the receipts in the block. Each of the new fields on the receipt exist in the state but would require an archive node to query for as the values can change over time.
Have the ethers L2 context helper pass through the new optimistic ethereum related fields
Breaking change in v0.8.0
…ch-submitter packages
as activated by default in 0.8
as these serve as integration points for projects
and remove SafeMath from 0.8 GasPriceOracle contract
to message-relayer and integration-tests
Previously the sequencer would call the `syncBatchesToTip` method as part of its `sequence()` loop. This commit removes that as the call to `syncBatchesToTip` does nothing for the sequencer currently. Syncing the batches would be useful for triggering reorgs, but that functionality does not currently exist. It would be better to remove this functionality for now as it could potentially interfere with the locking mechanism introduced in dfaa8fc. This will also reduce the amount of time the `txLock` is held, meaning that less transactions sent via RPC will be blocked and held in memory while waiting to execute.
This commit adds an addressNames object, which should be used both for names in the address manager, and naming deployment artifacts. fix(contracts): Remove unused queue container test code feat(contracts): Split up managed and unmanaged names refactor(contracts): Move address names into a single nested object refactor(contracts): Make address keys similar to values chore: add changeset docs(contracts): Add a docstring to deployAndPostDeploy refactor(contracts): Remove unnecessary contract name If the Address Manager's name is the same as the contract artifact we don't need specify the contract name argument.
THE `TARGET_GAS_LIMIT` should be set to 15 million. This will match what is deployed on kovan and what will be deployed on mainnet.
Enable the RPC test for `rollup_gasPrices` that was previously disabled due to how the gas pricing scheme was changed in `v0.5.0`.
regenesis: 0.5.0
Bump minor versions
release: v0.5.0 regenesis changesets
🦋 Changeset detectedLatest commit: 87c4dc7 The changes in this PR will be included in the next version bump. This PR includes changesets to release 12 packages
Not sure what this means? Click here to learn what changesets are. Click here if you're a maintainer who wants to add another changeset to this PR |
theochap
pushed a commit
that referenced
this pull request
Dec 10, 2025
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.
Description
Merge develop into master