-
Notifications
You must be signed in to change notification settings - Fork 10
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
ERC-7779 support v 0.1 #231
Merged
filmakarov
merged 11 commits into
release/eip-7702-sepolia-pre-release
from
feat/erc-7779-support
Feb 6, 2025
Merged
ERC-7779 support v 0.1 #231
filmakarov
merged 11 commits into
release/eip-7702-sepolia-pre-release
from
feat/erc-7779-support
Feb 6, 2025
Conversation
This file contains 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
ERC-7779 support v 0.1
🚨 Report Summary
For more details view the full report in OpenZeppelin Code Inspector |
Merge dev to add latest chanes re pre-validatiopn hook
🤖 Slither Analysis Report 🔎Slither report
# Slither report
_This comment was automatically generated by the GitHub Actions workflow._
THIS CHECKLIST IS NOT COMPLETE. Use
locked-ether🟡 Impact: Medium
utils/NexusBootstrap.sol#L33-L185 constable-statesImpact: Optimization
|
2 tasks
d8078a9
into
release/eip-7702-sepolia-pre-release
4 of 6 checks passed
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.
Draft implementation of ERC-7779 support for Nexus
PR-Codex overview
This PR focuses on enhancing the functionality of the
Nexus
contract and related components by integrating theERC7779Adapter
, which facilitates storage management and redelegation features for smart accounts.Detailed summary
function _amIERC7702()
inBaseAccount
to check contract code.MockERC7779
contract for testingERC7779Adapter
.IModuleManagerEventsAndErrors
with new events._STORAGE_LOCATION
to_NEXUS_STORAGE_LOCATION
inStorage
.INexus
interface to includeIERC7779
.ERC7779Adapter
for managing storage bases.ModuleManager
for uninstalling validators, executors, and hooks.Nexus
to utilizeERC7779Adapter
and handle storage during redelegation.ERC7779Adapter
and redelegation logic inTestFuzz_ERC7779Adapter
andTestEIP7702
.