gpt4 book ai didi

ethereum - ERC-721 智能合约一次类型转换 2 个 NFT

转载 作者:行者123 更新时间:2023-12-05 03:37:11 27 4
gpt4 key购买 nike

我有一份来自 Hash Lip 的 github 的智能合约,据我所知应该一次类型转换 1 个,但每次都类型转换 2 个。代码如下:

设置代码:

// SPDX-License-Identifier: GPL-3.0

// Created by HashLips
// The Nerdy Coder Clones

pragma solidity ^0.8.0;

import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";

contract TestBoxes is ERC721Enumerable, Ownable {
using Strings for uint256;

string public baseURI;
string public baseExtension = ".json";
uint256 public cost = 0.01 ether;
uint256 public maxSupply = 3; //there should only be 3 minted (I have 3 image files to test)
uint256 public maxMintAmount = 3;
bool public paused = false;
mapping(address => bool) public whitelisted;

然后合约类型转换的部分如下。正如你在上面看到的,我将最大值设置为 3,在接下来的部分中,在构造函数执行后,它会为所有者类型转换 1 个 NFT。


constructor(
string memory _name,
string memory _symbol,
string memory _initBaseURI
) ERC721(_name, _symbol) {
setBaseURI(_initBaseURI);
mint(msg.sender, 1); //should mint 1 at deployment but mints 2...
}

// internal
function _baseURI() internal view virtual override returns (string memory) {
return baseURI;
}

// public
function mint(address _to, uint256 _mintAmount) public payable {
uint256 supply = totalSupply();
require(!paused);
require(_mintAmount > 0);
require(_mintAmount <= maxMintAmount);
require(supply + _mintAmount <= maxSupply);

if (msg.sender != owner()) {
if(whitelisted[msg.sender] != true) {
require(msg.value >= cost * _mintAmount);
}
}

for (uint256 i = 0; i <= _mintAmount; i++) { //start the index at 0
_safeMint(_to, supply + i);
}
}

最佳答案

您在 for 中存在逻辑错误在 mint() 内循环功能。

for (uint256 i = 0; i <= _mintAmount; i++)

示例:_mintAmount1 (与从构造函数传递相同)。

  • 第一次迭代:

    i0小于或等于 1

    => 执行迭代并执行 _safeMint()

  • 第二次迭代:

    i1小于或等于 1

    => 它仍然执行迭代并执行 _safeMint()


通过将条件更改为 i < _mintAmoun 来修复它(i 小于)。然后它将只执行一次(对于 mintAmount 值 1)。

关于ethereum - ERC-721 智能合约一次类型转换 2 个 NFT,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/69408191/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com