diff --git a/packages/deployments/contracts/src/cli/init/helpers/assets.ts b/packages/deployments/contracts/src/cli/init/helpers/assets.ts index 82f63822b5..8d476efa79 100644 --- a/packages/deployments/contracts/src/cli/init/helpers/assets.ts +++ b/packages/deployments/contracts/src/cli/init/helpers/assets.ts @@ -81,7 +81,7 @@ export const setupAsset = async (args: { // Set up all the representational assets on their respective domains. for (const [domain, representation] of Object.entries(asset.representations)) { - if (!representation) return; + if (!representation) continue; const stableswapPool = constants.AddressZero; const network = networks.find((n) => n.domain === domain);