Hello is it possible to approve the Ethereum mainnet tokens to the custom smart contract using QR code on MetaMask?
const uri = ethereum:${tokenAddr}@1/approve?spender=${spenderAddr}&value=${amountInWei}
;
const uri = https://metamask.app.link/send/${tokenAddr}@1/approve?address=${spenderAddr}&uint256=${amountInWei}
;
const uri = ethereum:${tokenAddr}@1/approve?address=${spenderAddr}&uint256=${amountInWei}
;
const uri = https://metamask.app.link/send/pay-contractAddress/approve?address=${spenderAddr}&uint256=${amountInWei}
;
I tried to generate the deeplink qr code with this, but all is unavailalbe on MetaMask app.
Please help me.