-
Notifications
You must be signed in to change notification settings - Fork 12
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
Update Account and Paymaster to use Entrypoint v0.8.0 #95
Conversation
); | ||
} | ||
} | ||
abstract contract Account is AccountCore, ERC721Holder, ERC1155Holder, ERC7739 {} |
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 would consider removing Account
whatsoever and just enable ERC721Holder
, ERC1155Holder
, ERC721
and ERC7739
as toggle features in Wizard.
We can keep this contract until we have the wizard version
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.
lets keep it for now, we can remove it in a further PR.
I would even consider renaming AccountCore to Account at that point
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 will require a lot of mocks changes, so I'd definitelly do it in a separate PR.
Co-authored-by: Ernesto García <[email protected]>
Requires OpenZeppelin/openzeppelin-contracts#5586