diff --git a/infrastructure/zk/src/run/run.ts b/infrastructure/zk/src/run/run.ts index 651a8ef20ef5..67ad0e80b804 100644 --- a/infrastructure/zk/src/run/run.ts +++ b/infrastructure/zk/src/run/run.ts @@ -49,7 +49,7 @@ export async function deployERC20( const WETH = getTokens(destinationFile).find((token) => token.symbol === 'WETH')!; env.modify('CONTRACTS_L1_WETH_TOKEN_ADDR', `CONTRACTS_L1_WETH_TOKEN_ADDR=${WETH.address}`); } else if (command == 'new') { - let destinationFile = "native_erc20" + let destinationFile = 'native_erc20'; await utils.spawn( `yarn --silent --cwd contracts/ethereum deploy-erc20 add --token-name ${name} --symbol ${symbol} --decimals ${decimals} > ./etc/tokens/${destinationFile}.json` );