We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
vyper --version
exports: interface does not work for interfaces which were declared inline. example:
exports: interface
# lib.vy from ethereum.ercs import IERC20 asset: public(immutable(IERC20)) interface IAsset: def asset() -> address: view implements: IAsset @deploy def __init__(asset_: IERC20): asset = asset_
# main.vy from ethereum.ercs import IERC20 import lib initializes: lib exports: lib.IAsset @deploy def __init__(asset_: IERC20): lib.__init__(asset_)
The text was updated successfully, but these errors were encountered:
mildly related: #3954
Sorry, something went wrong.
module.__at__()
fixed in #4090
No branches or pull requests
Version Information
vyper --version
): e1adb7bWhat's your issue about?
exports: interface
does not work for interfaces which were declared inline. example:The text was updated successfully, but these errors were encountered: