Currently facing issues in trying to get to sign the wallet to get the address on my mobile phone browser, wanted to be able to connect it to a wallet (MetaMask pref.) installed on my mobile phone.
const provider = new ethers.providers.Web3Provider(window.ethereum, "any");
await provider.send("eth_requestAccounts", []);
const signer = provider.getSigner();
const address = await signer.getAddress();
console.log(address);
Is there any way to connect it with each other? It works well on a PC