5 请教老师:使用web3调用TransferFrom出现的问题

调用TransferFrom函数,转入转出账户相同,请问是我的代码有什么问题吗

const linkContract = new web3.eth.Contract(contractABI, contractAddress);
export default {
  methods: {
    async approveLink() {
      let result = await linkContract.methods
        .approve(authAddress, "10")
        .send({ from: walletAddress });
      console.log(result);
    },
    async transferFrom() {
      let result = await linkContract.methods
        .transferFrom(walletAddress, authAddress, "10")
        .send({
          from: authAddress,
          gas: "100000",
        });
      console.log(result);
    }
}

image.png

请先 登录 后评论

最佳答案 2023-04-24 15:55

看上去是没问题的

请先 登录 后评论

其它 1 个回答

用户_14981
请先 登录 后评论