We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 31265b1 commit 660921dCopy full SHA for 660921d
inspector_facet/abi.py
@@ -117,7 +117,7 @@ def hardhat_project_abis(project_dir: str, build_dirname: Optional[str] = None):
117
Path to foundry project
118
"""
119
if build_dirname is None:
120
- build_dirname = "artifacts/contracts"
+ build_dirname = "artifacts"
121
122
build_dir = os.path.join(project_dir, build_dirname)
123
build_files = glob.glob(os.path.join(build_dir, "**/*.json"), recursive=True)
@@ -134,5 +134,5 @@ def hardhat_project_abis(project_dir: str, build_dirname: Optional[str] = None):
134
abis[contract_name] = contract_abi
135
except Exception:
136
continue
137
-
+
138
return abis
0 commit comments