Skip to content

Commit 9fd5a40

Browse files
committed
feat: using ethereum mainnet chain now
1 parent 6619374 commit 9fd5a40

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/pages/_app.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ import { zerionWallet } from "@rainbow-me/rainbowkit/wallets";
2222

2323
// SIWE Integration
2424
import { WagmiConfig, createConfig, configureChains } from "wagmi";
25-
import { polygon /* , polygonMumbai */ } from "wagmi/chains";
25+
import { mainnet } from "wagmi/chains";
2626
import { publicProvider } from "wagmi/providers/public";
2727
import { ChakraProvider } from "@chakra-ui/react";
2828
import { theme } from "@/theme";
@@ -35,7 +35,7 @@ import { AppContextProvider } from "@/contexts/AppContextProvider";
3535
/**
3636
* Configure chains supported
3737
*/
38-
const CURRENT_CHAIN = polygon;
38+
const CURRENT_CHAIN = mainnet;
3939
// process.env.VERCEL_ENV !== undefined && process.env.VERCEL_ENV === "production" ? polygon : polygonMumbai;
4040

4141
const { chains, publicClient } = configureChains(

0 commit comments

Comments
 (0)