Hello,
I integrated web3auth and I can sign in using web2 socials and I get a working address that accepts matic. But how can I withdraw the balance?
In other words, how can users who created their accounts using web3auth sign transactions to interact with my dapp? Or maybe there is a way to make the signing automatic?
Here is the transfer function that I implemented, but it works only if metamask is installed, and it references the address in the metamask, not the address provided by web3auth.
const options = {
type: "native",
amount: Moralis.Units.ETH("0.01"),
receiver: `${receiverAddress}`,
};
let result = await Moralis.transfer(options);
Thank you.