We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I might be wrong but seems to me that Sepolia chainid is missing
The text was updated successfully, but these errors were encountered:
UPDATE: solved! it was my fault. Sorry about that. I'll leave the configuration just in case anybody needs it (@GiuseppeF)
I'm confused too. I have this configuration
const useDappConfig: Config = { readOnlyChainId: Mainnet.chainId, readOnlyUrls: { [Sepolia.chainId]: new JsonRpcProvider( `https://eth-sepolia.g.alchemy.com/v2/${import.meta.env.VITE_ALCHEMY_API}` ), [Hardhat.chainId]: web3Provider, }, notifications: { expirationPeriod: 5000, }, };
but I get stuck on the connection:
const { account, deactivate, activateBrowserWallet, chainId } = useEthers(); const { isSignedIn, isCorrectNetwork } = useAuth(); console.log('status: ', isSignedIn, isCorrectNetwork); // is always false console.log('Current Chain ID: ', chainId); // 11155111
I can't connect for some reason I don't really get.
Sorry, something went wrong.
No branches or pull requests
I might be wrong but seems to me that Sepolia chainid is missing
The text was updated successfully, but these errors were encountered: