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 3e3ddce commit 5da4d21Copy full SHA for 5da4d21
apps/dashboard/src/components/contract-components/contract-deploy-form/custom-contract.tsx
@@ -427,7 +427,10 @@ export const CustomContractForm: React.FC<CustomContractFormProps> = ({
427
}
428
429
430
- if (metadata.name === "MarketplaceV3" && !isZkSyncChain(walletChain)) {
+ if (
431
+ metadata.name === "MarketplaceV3" &&
432
+ !(await isZkSyncChain(walletChain))
433
+ ) {
434
// special case for marketplace
435
return await deployMarketplaceContract({
436
account: activeAccount,
0 commit comments