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
vyper Version (output of vyper --version): 0.3.11+commit.c6b29c7f
OS: linux
Python Version (output of python --version): 3.11.3
What's your issue about?
Related comment #3729 (review). Using the singleton modules with ownership hierarchy design for the PoC:
# mod3.vy# Assume a folder `interfaces` at root directory with a file `IAccessControl.vy`import interfaces.IAccessControl as IAccessControl
# mod2.vyimport mod3
# mod1.vyimport mod2 as acl
implements: acl.mod3.IAccessControl
@deploydef __init__():
pass
This will throw with:
vyper.exceptions.InvalidType: 'acl.mod3.IAccessControl' is not a type!
How can it be fixed?
Allow expressions of:
implements: lib.InterfaceDefinition
The text was updated successfully, but these errors were encountered:
Version Information
vyper --version
):0.3.11+commit.c6b29c7f
linux
python --version
):3.11.3
What's your issue about?
Related comment #3729 (review). Using the singleton modules with ownership hierarchy design for the PoC:
This will throw with:
How can it be fixed?
Allow expressions of:
The text was updated successfully, but these errors were encountered: