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
pubwill be removed in favor of access(all) in preparation for entitlements. As such, we should ensure that access modifiers are updated before mainnet deployment.
Suggested solution
Replace instances of pub with access(all) across the whole of this codebase.
The text was updated successfully, but these errors were encountered:
As @austinkline pointed out, we may wait on deploying contracts with updated access modifiers in favor of forcing a breaking update. The risk in updating pub with access(all) is that we'll introduce unknown vulnerabilities in a post-entitlement world that would otherwise be caught and tested locally before updating the broken contract in prod.
Description
pub
will be removed in favor ofaccess(all)
in preparation for entitlements. As such, we should ensure that access modifiers are updated before mainnet deployment.Suggested solution
Replace instances of
pub
withaccess(all)
across the whole of this codebase.The text was updated successfully, but these errors were encountered: