79640590

Date: 2025-05-27 13:41:21
Score: 0.5
Natty:
Report link

It looks like the errors you’re seeing are due to version mismatches or incorrect imports in your project. Specifically, the modules like ./walletConnect and ./connectors/walletConnectLegacy seem to be missing in the installed versions of @wagmi/connectors and @wagmi/core.

Here’s how you can resolve this:

yarn add wagmi@latest @wagmi/core @wagmi/connectors @web3modal/ethereum

or specify versions that are compatible with each other.

import { WalletConnectConnector } from '@wagmi/core/connectors/walletConnect';

But in newer versions, the import path or package structure might have changed.

rm -rf node_modules/.vite yarn install yarn vite --force

If after this you still face issues, consider sharing your package.json dependencies and relevant import code so we can diagnose further.

Key points

Reasons:
  • Long answer (-1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: MOHD SAYEEDUDDIN AHMED