You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This feature is useful when working with upgradable contracts that require an immutable variable to be set. These values are not real variables because they are put into the contract's bytecode and thus can only be set via the constructor.
In deployProxy , the cosntructorArgs need to be passed through from options: DeployOptions to the opts: DeployProxyOptions of the call to upgrades.deployProxy
The text was updated successfully, but these errors were encountered:
This feature is useful when working with upgradable contracts that require an
immutable
variable to be set. These values are not real variables because they are put into the contract's bytecode and thus can only be set via the constructor.In
deployProxy
, thecosntructorArgs
need to be passed through fromoptions: DeployOptions
to theopts: DeployProxyOptions
of the call toupgrades.deployProxy
The text was updated successfully, but these errors were encountered: