Tengo este error al llamar a la función después de walletconnect. Puedo obtener la dirección de la billetera después de conectar la billetera, pero cuando llamo a la función "whiteListMint", aparece este error. ¿Por qué error de metamáscara?
const walletconnect = new WalletConnectConnector({ rpcUrl: `https://mainnet.infura.io/v3/${process.env.INFURA_KEY}`, bridge: 'https://bridge.walletconnect.org', qrcode: true, pollingInterval: POLLING_INTERVAL, }) const connectwallet = async (activate) => { try { await activate(walletconnect); } catch (error) { console.log(error); } }; const handleWhiteListMint = async () => { if (active) { if (!mintStats) { return; } const id = toast.loading("Transaction pending"); whiteListMint( account, parseInt(quantity), mintStats?.feePerQuantity );