Hey guys,
I’ve currently set up both MM and WalletConnect for my dapp. I can connect to wallet connect successfully, however when I go to sign a transaction, MM pops up and expects me to complete it there, when it should all happen on wallet connect.
Any idea why this is happening? I am using the Moralis provider for transactions as follows:
    const ethers = Moralis.web3Library;
    const web3Provider = await Moralis.enableWeb3();
    const signer = web3Provider.getSigner();
    const contractWhoopy = new ethers.Contract(cloneAddress, whoopyABI, signer);
Thanks!