let contract= new web3.eth.Contract(BUSD_TOKEN_ABI, BUSD_TOKEN_ADDRESS)
await contract.methods.transfer(toAddress, transFerValue).send({from: defaultAddress})
I can send easily bep20 token by using above code from one address to another and its work fine, but in this case I need to pay the gas fee from defaultAddress. But I want to pay the gas fee from another account. Is there any way to pay the gas fee from another account when transfer the bep20 token using web3? I searched a lot but not found any proper answer. If anyone know the answer please response with proper guideline.