-
Notifications
You must be signed in to change notification settings - Fork 193
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
19 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
/* | ||
* The supported chains. | ||
* By default, there are only two chains here: | ||
* | ||
* - mudFoundry, the chain running on anvil that pnpm dev | ||
* starts by default. It is similar to the viem anvil chain | ||
* (see https://viem.sh/docs/clients/test.html), but with the | ||
* basefee set to zero to avoid transaction fees. | ||
* - latticeTestnet, our public test network. | ||
* | ||
*/ | ||
|
||
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, redstone, garnet]; |