You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
When trying to use the chain Sepolia, this error occurs:
app-index.js:32 ChainDoesNotSupportContract: Chain "Sepolia" does not support contract "ensUniversalResolver".
This could be due to any of the following:
- The chain does not have the contract "ensUniversalResolver" configured.
Describe the solution you'd like
I would like to be able to use the chain Sepolia.
Describe alternatives you've considered
For the moment I have to use the chain Goerli.
Additional context
I simply init the app with npx create-web3-dapp@latest
then I modified frontend/app/layout.tsx like this:
"use client";import{WagmiConfig,createConfig,sepolia}from"wagmi";import{ConnectKitProvider,getDefaultConfig}from"connectkit";importNavbarfrom"@/components/instructionsComponent/navigation/navbar";importFooterfrom"@/components/instructionsComponent/navigation/footer";import{goerli}from"viem/chains";constconfig=createConfig(getDefaultConfig({// Required API KeysalchemyId: process.env.ALCHEMY_API_KEY,// or infuraIdwalletConnectProjectId: process.env.NEXT_PUBLIC_WALLET_CONNECT_PROJECT_ID!,// RequiredappName: "You Create Web3 Dapp",// OptionalappDescription: "Your App Description",appUrl: "https://family.co",// your app's urlappIcon: "https://family.co/logo.png",// your app's logo,no bigger than 1024x1024px (max. 1MB)// ChainDoesNotSupportContract: Chain "Sepolia" does not support contract "ensUniversalResolver".// This could be due to any of the following:// - The chain does not have the contract "ensUniversalResolver" configured.chains: [sepolia],// chains: [goerli],}));exportdefaultfunctionRootLayout({
children,}: {children: React.ReactNode;}){return(<htmllang="en"><WagmiConfigconfig={config}><ConnectKitProvidermode="dark"><body><divstyle={{display: "flex",flexDirection: "column",minHeight: "105vh"}}><Navbar/><divstyle={{flexGrow: 1}}>{children}</div><Footer/></div></body></ConnectKitProvider></WagmiConfig></html>);}
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
When trying to use the chain Sepolia, this error occurs:
Describe the solution you'd like
I would like to be able to use the chain Sepolia.
Describe alternatives you've considered
For the moment I have to use the chain Goerli.
Additional context
I simply init the app with
npx create-web3-dapp@latest
then I modified
frontend/app/layout.tsx
like this:The text was updated successfully, but these errors were encountered: