-
Notifications
You must be signed in to change notification settings - Fork 620
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
feat: set code tx support #1600
base: develop
Are you sure you want to change the base?
Conversation
WalkthroughThis PR updates the version number from "v4.4.87" to "v4.4.88" in the version file. It modifies the dependency list in the rollup module by adding, updating, and removing several packages. Additionally, the PR refines import statements in the sender and watcher components—shifting from a specific eip4844 import to a more general misc package—and enhances the TransactionData structure in the l2 watcher by adding a new AuthorizationList field. Changes
Possibly related PRs
Suggested reviewers
Poem
📜 Recent review detailsConfiguration used: CodeRabbit UI ⛔ Files ignored due to path filters (1)
📒 Files selected for processing (1)
🚧 Files skipped from review as they are similar to previous changes (1)
⏰ Context from checks skipped due to timeout of 90000ms (2)
Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media? 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
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.
Actionable comments posted: 2
📜 Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro
⛔ Files ignored due to path filters (2)
go.work.sum
is excluded by!**/*.sum
rollup/go.sum
is excluded by!**/*.sum
📒 Files selected for processing (5)
common/version/version.go
(1 hunks)rollup/go.mod
(4 hunks)rollup/internal/controller/sender/sender.go
(1 hunks)rollup/internal/controller/watcher/l1_watcher.go
(1 hunks)rollup/internal/controller/watcher/l2_watcher.go
(1 hunks)
✅ Files skipped from review due to trivial changes (1)
- rollup/internal/controller/sender/sender.go
🧰 Additional context used
🪛 golangci-lint (1.62.2)
rollup/internal/controller/watcher/l1_watcher.go
8-8: "github.com/ethereum/go-ethereum/consensus/misc" imported and not used
(typecheck)
🔇 Additional comments (2)
common/version/version.go (1)
8-8
: LGTM: Version increment for new feature.Version bump from v4.4.87 to v4.4.88 aligns with the addition of set code transaction support.
rollup/internal/controller/watcher/l2_watcher.go (1)
103-121
: LGTM: Added authorization list support.The addition of
AuthorizationList
field and its initialization usingSetCodeAuthorizations()
properly implements the set code transaction support.
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## develop #1600 +/- ##
===========================================
- Coverage 51.72% 51.72% -0.01%
===========================================
Files 157 157
Lines 12555 12556 +1
===========================================
Hits 6494 6494
- Misses 5497 5498 +1
Partials 564 564
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
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.
I think would be better to merge it into #1583 once scroll-tech/da-codec#43 is merged as well
Purpose or design rationale of this PR
PR title
Your PR title must follow conventional commits (as we are doing squash merge for each PR), so it must start with one of the following types:
Deployment tag versioning
Has
tag
incommon/version.go
been updated or have you addedbump-version
label to this PR?Breaking change label
Does this PR have the
breaking-change
label?Summary by CodeRabbit