We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 64456a0 + 3770a5b commit fb33e8bCopy full SHA for fb33e8b
.changeset/poor-dolphins-wait.md
@@ -0,0 +1,5 @@
1
+---
2
+"hardhat": patch
3
4
+
5
+Expose a missing method in the Artifacts interface
packages/hardhat-core/src/types/artifacts.ts
@@ -90,6 +90,13 @@ export interface Artifacts {
90
input: CompilerInput,
91
output: CompilerOutput
92
): Promise<string>;
93
94
+ /**
95
+ * Returns the absolute path to the given artifact.
96
+ *
97
+ * @param fullyQualifiedName The FQN of the artifact.
98
+ */
99
+ formArtifactPathFromFullyQualifiedName(fullyQualifiedName: string): string;
100
}
101
102
/**
0 commit comments