0

您好,我有两个智能合约,一个是 ERC1155 合约,它从 Moralis IPFS 服务器铸造一个 NFT,另一个是 ERC20 代币。我希望用户能够使用 ERC20 代币支付铸造的 NFT,但我收到transferfrom()函数错误:brownie.exceptions.VirtualMachineError:revert:ERC20:转账金额超过限额。我做了一些研究,但到目前为止没有任何帮助。

来自终端的错误

这是我的 ERC1155 合约


import "@openzeppelin/contracts/token/ERC1155/ERC1155.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
// import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@chainlink/contracts/src/v0.8/VRFConsumerBase.sol";

contract NFTPomoBots is ERC1155, Ownable {
    IERC20 private _roboToken;

    constructor(IERC20 roboToken)
        ERC1155(
            "ipfs://QmcPjTnt33BRM5TPGyno7restoftheurl/({id}.json"
        )
    {
        _roboToken = roboToken;
    }

    function mintPomoBot(
        address account,
        uint256 id,
        uint256 amount
    ) public {
        require(_roboToken.transferFrom(msg.sender, address(this), 1));
        _mint(account, id, amount, "");
    }
}

这是ERC20合约

// SPDX-License-Identifier: MIT

import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol";

pragma solidity ^0.8.0;

contract RoboToken is ERC20, Ownable {
    uint256 public maxSupply = 100000 * 10**18;

    constructor() ERC20("Pomobots Token", "POMO") {
        _mint(msg.sender, maxSupply);
    }

    function transferToAccount(
        address to,
        uint256 amount,
        bool completedTime
    ) public onlyOwner {
        require(completedTime == true);
        _mint(to, amount);
    }

    function approveNFTContract(address _tokenAddress) public onlyOwner {
        approve(_tokenAddress, maxSupply);
    }
}

这是测试脚本

def test_can_mint_new_nft():

    # Arrange
    account1 = get_account()
    print(f"account 1 {account1.address}")
    account2 = get_account(1)
    print(f"account 2 {account2.address}")

    robo_token = deploy_erc20_token()
    pomobot_token = NFTPomoBots.deploy(robo_token, {"from": account1})
    # Act
    tx1 = robo_token.transferToAccount(account2, 10, True)
    tx1.wait(1)

    print(robo_token.balanceOf(account2.address))
    tx2 = robo_token.approve(account2.address, robo_token.balanceOf(account2.address))
    tx2.wait(1)

    # assert
    assert pomobot_token.mintPomoBot(account2.address, 20, 1, {"from": account2})
    print(f"nft minted to {account2.address}")
    print(robo_token.balanceOf(account2.address))

任何帮助表示赞赏,我是否应该支付 minPomobot() 函数?

4

1 回答 1

2

在调用mintPomoBot函数之前,使用相同的帐户(msg.sender)您需要调用智能合约上的approve(spender, amount)函数where和RoboTokenspender = NFTPomoBots' addressamount = 1

于 2021-11-17T22:56:29.477 回答