智能合约可以持有多少个NFT
我知道ERC721合同内部有许多映射,因此可以说,该合同与原始10K不同。这将导致合同冻结或停止工作。还是没有限制?
映射(uint256 =>地址)
I know there is many mappings inside of an ERC721 contracts so let’s say this contract has about 2 million NFTs unlike the original 10k. Will this cause contract to freeze or stop working. Or is there no limit?
Mapping(uint256 => address)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
erc-721 标准不能定义任何nfts可以在a f.收集,除了由
uint256
datatype定义的令牌ID。这意味着技术限制为2^256,约为10^77。
The ERC-721 standard does not define any limit on how many NFTs can be in a collection, apart from token IDs being defined by an
uint256
datatype.Which means the technical limit is 2^256, which is approximately 10^77.