Skip to content

Commit c8185bd

Browse files
committed
fix(web): wagmi config for new Neo dispute kits
1 parent db8a4ba commit c8185bd

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

web/wagmi.config.ts

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,15 @@ const readArtifacts = async (type: ArbitratorTypes, viemChainName: string, hardh
2121
type === ArbitratorTypes.vanilla
2222
? ""
2323
: ArbitratorTypes[type].toString().charAt(0).toUpperCase() + ArbitratorTypes[type].toString().slice(1);
24-
const vanillaArtifacts = ["KlerosCore", "DisputeKitClassic", "SortitionModule", "DisputeResolver"];
24+
const vanillaArtifacts = [
25+
"KlerosCore",
26+
"DisputeKitClassic",
27+
"DisputeKitShutter",
28+
"DisputeKitGated",
29+
"DisputeKitGatedShutter",
30+
"SortitionModule",
31+
"DisputeResolver",
32+
];
2533
const typeSpecificArtifacts = vanillaArtifacts.map((artifact) => `${artifact}${artifactSuffix}`);
2634

2735
const chainMap: Record<string, Chain> = {

0 commit comments

Comments
 (0)