Skip to content

Commit a5c61f3

Browse files
committed
fix: add interfaces
1 parent c34dfb8 commit a5c61f3

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

wagmi.config.ts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ interface JsonFile {
1111

1212
const ARTIFACTS_DIR = "out";
1313
const CONTRACTS_DIR = "contracts";
14-
const CONTRACTS_SUBDIRS = ["adapters", "helpers"];
14+
const CONTRACTS_SUBDIRS = ["adapters", "helpers", "interfaces"];
1515

1616
function filterArtifacts(): string[] {
1717
const result: string[] = [];
@@ -99,6 +99,11 @@ export default defineConfig({
9999
project: ".",
100100
artifacts: ARTIFACTS_DIR,
101101
include: filterArtifacts(),
102+
exclude: [
103+
"**/IZapper.sol/**",
104+
"**/IERC20ZapperDeposits.sol/**",
105+
"**/IETHZapperDeposits.sol/**",
106+
],
102107
forge: {
103108
clean: false,
104109
build: false,

0 commit comments

Comments
 (0)