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 b7c0e4a commit fce916bCopy full SHA for fce916b
apps/dashboard/src/components/contract-components/contract-deploy-form/custom-contract.tsx
@@ -386,10 +386,6 @@ export const CustomContractForm: React.FC<CustomContractFormProps> = ({
386
throw new Error("no chain");
387
}
388
389
- const compilerType = (await isZkSyncChain(walletChain))
390
- ? "zksolc"
391
- : "solc";
392
-
393
let _contractURI = "";
394
395
if (hasContractURI && params.contractMetadata) {
@@ -454,7 +450,6 @@ export const CustomContractForm: React.FC<CustomContractFormProps> = ({
454
450
deployMetadata: m,
455
451
initializeParams: params.moduleData[m.name],
456
452
})),
457
- compilerType,
458
453
});
459
},
460
0 commit comments