-
Notifications
You must be signed in to change notification settings - Fork 16
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
Upgradeable L2 Resolver #98
base: main
Are you sure you want to change the base?
Conversation
🟡 Heimdall Review Status
|
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.
Slither found more than 20 potential problems in the proposed changes. Check the Files changed tab for more details.
return implementer; | ||
} | ||
|
||
address a = IAddrResolver(address(this)).addr(node); |
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.
NOTE: This is a deviation from ENS's inheritance-based approach and should be looked at closely.
The L2 Resolver contract currently deployed is immutable. Though it currently inherits all of the most modern ENS resolver profiles, we know that we'll want to add/upgrade our resolver in the future as new features and ENSIPs come online.
This PR implements a functionally equivalent L2 Resolver but with some notable features:
initialize()
method