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
{{ message }}
This repository has been archived by the owner on Aug 8, 2024. It is now read-only.
contracts/ERC721_ex1.cairo:10:6: Could not find module 'openzeppelin.introspection.ERC165'. Searched in the following paths:
/Users/x/Dev/web3park/cairo/starknet-erc721-workshop/openzeppelin/introspection/ERC165.cairo
/Users/x/Dev/web3park/cairo/cairo_venv/lib/python3.8/site-packages/openzeppelin/introspection/ERC165.cairo
from openzeppelin.introspection.ERC165 import ERC165
^*******************************^
Compiled with error, please help.
The text was updated successfully, but these errors were encountered:
It looks like you are trying to import the ERC165 module from the openzeppelin.introspection package, but it is not being found. This error message indicates that the Cairo compiler looked for the ERC165 module in the directories /Users/x/Dev/web3park/cairo/starknet-erc721-workshop/openzeppelin/introspection/ and /Users/x/Dev/web3park/cairo/cairo_venv/lib/python3.8/site-packages/openzeppelin/introspection/, but it was not found in either directory.
Make sure that the openzeppelin.introspection package is installed and that the ERC165 module is located in one of the specified directories. If the package is not installed, you can install it using the pip package manager:
pip install openzeppelin
If you have already installed the package, make sure that the package is properly installed and that the ERC165 module is located in one of the directories that the Cairo compiler searched (i.e., /Users/x/Dev/web3park/cairo/starknet-erc721-workshop/openzeppelin/introspection/ and /Users/x/Dev/web3park/cairo/cairo_venv/lib/python3.8/site-packages/openzeppelin/introspection/).
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Compiled with error, please help.
The text was updated successfully, but these errors were encountered: