Skip to content
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

Options to change deploy and factory functions #1104

Open
wants to merge 5 commits into
base: master
Choose a base branch
from

Conversation

gnarvaja
Copy link

Implementation for #231

Adds two new options that allow override of the deploy and factory
functions.

Kind is still used to identify the kind of proxy used, but this
customization can manage variations of the proxy implementation and its
constructor parameters.

As a test case, and to show a concrete application of this change, I
implemented a AccessManagedProxy. This proxy works like a UUPS (ERC1967)
proxy, but before delegating the calls, checks with the access manager
if the call is allowed.

Adds two new options that allow override of the deploy and factory
functions.

Kind is still used to identify the kind of proxy used, but this
customization can manage variations of the proxy implementation and its
constructor parameters.

As a test case, and to show a concrete application of this change, I
implemented a AccessManagedProxy. This proxy works like a UUPS (ERC1967)
proxy, but before delegating the calls, checks with the access manager
if the call is allowed.
Quick fix, I'm not expert enough in Typescript to make the correct type
annotations
Copy link
Member

@ericglau ericglau left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thank you @gnarvaja for this PR! This looks like a good approach for allowing the proxy deployment to be overridden.

I made a few minor changes to the example proxy's comments and simplified the types for the new options.

The following would also be needed before we can merge this. Would you be interested in adding these? Thanks!

  • A basic test for deploying a custom beacon proxy
  • Add the new options in the documentation in docs/modules/ROOT/pages/api-hardhat-upgrades.adoc

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants