diff --git a/templates/threejs/packages/client/package.json b/templates/threejs/packages/client/package.json index caaa39d369..890e35b7ac 100644 --- a/templates/threejs/packages/client/package.json +++ b/templates/threejs/packages/client/package.json @@ -31,6 +31,7 @@ "@types/react": "18.2.22", "@types/react-dom": "18.2.7", "@vitejs/plugin-react": "^3.1.0", + "eslint": "8.57.0", "eslint-plugin-react": "7.31.11", "eslint-plugin-react-hooks": "4.6.0", "vite": "^4.2.1", diff --git a/templates/threejs/packages/client/src/mud/supportedChains.ts b/templates/threejs/packages/client/src/mud/supportedChains.ts index 499c8bb3a6..5251ff8f96 100644 --- a/templates/threejs/packages/client/src/mud/supportedChains.ts +++ b/templates/threejs/packages/client/src/mud/supportedChains.ts @@ -9,10 +9,11 @@ * - latticeTestnet, our public test network. * */ -import { MUDChain, latticeTestnet, mudFoundry } from "@latticexyz/common/chains"; + +import { MUDChain, latticeTestnet, mudFoundry, redstone, garnet } from "@latticexyz/common/chains"; /* * See https://mud.dev/tutorials/minimal/deploy#run-the-user-interface * for instructions on how to add networks. */ -export const supportedChains: MUDChain[] = [mudFoundry, latticeTestnet]; +export const supportedChains: MUDChain[] = [mudFoundry, latticeTestnet, redstone, garnet];