fix(evm): update CallProxy bindings - #824
Merged
Merged
Conversation
gustavogama-cll
force-pushed
the
ggama/fix/update-callproxy
branch
3 times, most recently
from
August 13, 2026 00:59
6d2f91e to
875fb11
Compare
This new version restricts the `renounceRole` call in the CallProxy fallback.
gustavogama-cll
force-pushed
the
ggama/fix/update-callproxy
branch
from
August 13, 2026 01:14
875fb11 to
f6cc9bd
Compare
|
graham-chainlink
approved these changes
Aug 13, 2026
Contributor
There was a problem hiding this comment.
Pull request overview
This PR updates the generated CallProxy contract bindings (EVM and zkSync) to incorporate a new runtime restriction that blocks renounceRole(bytes32,address) calls via the proxy fallback, and updates the EVM runtime fingerprinting logic accordingly.
Changes:
- Updated zkSync CallProxy bytecode binding to the newly compiled contract bytecode.
- Updated EVM CallProxy Go binding
Binto the newly compiled contract bytecode. - Updated the EVM CallProxy runtime fingerprint prefix/suffix constants used to recover the embedded immutable target address from deployed bytecode.
Reviewed changes
Copilot reviewed 3 out of 3 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
| sdk/zksync/bindings/CallProxy.go | Updates zkSync CallProxy bytecode used for Create2 deployment. |
| sdk/evm/execution_error.go | Updates CallProxy runtime fingerprint constants to match the new runtime (with renounceRole blocked). |
| sdk/evm/bindings/CallProxy.go | Updates the generated EVM CallProxy Bin to the new compiled bytecode. |
💡 Add a code-review agent skill or configure MCP servers for context-aware, tailored reviews. Learn more in the docs.
ChrisAmora
approved these changes
Aug 13, 2026
gustavogama-cll
pushed a commit
that referenced
this pull request
Aug 13, 2026
🤖 I have created a release *beep* *boop* --- ## [0.52.1](v0.52.0...v0.52.1) (2026-08-13) ### Bug Fixes * **evm:** update CallProxy bindings ([#824](#824)) ([8e40a43](8e40a43)) --- This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please). Co-authored-by: app-token-issuer-ops-platform[bot] <275822481+app-token-issuer-ops-platform[bot]@users.noreply.github.com>
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 new version restricts the
renounceRolecall in the CallProxy fallback.