在铸造之前,如何更改Solana系列的名称?
收集nft nft”
MCC标准名称默认情况下的 收集不再像将收藏名称放在NFT的元数据中那样简单。取而代之的是,新标准迁移了NFT详细信息。
MetaPlex提供的工具( https://collections.metaplex.com/ )可以重命名一个集合只有一旦NFT铸造,才能这样做。这使我回到了我的主要问题:如何在铸造之前更改Solana系列的名称?
The MCC standard names a collection "collection NFT by default"
Following metaplex's new MCC standard, naming a collection is not as simple as putting the collection name in the NFT's metadata anymore. Instead, the new standard migrates the NFT details on-chain.
The tool that metaplex provides (https://collections.metaplex.com/) can rename a collection but it can only do so once the NFT is minted. This brings me back to my main question: How do I change the name of a solana collection prior to minting?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
关于MCC,您需要了解一些知识。当您运行
上载
命令一个没有元数据的NFT将被铸造到您作为权威提供的钱包中(-K
参数),此空的NFT是默认的集合NFT,将充当您收藏中所有未打印的NFT的肖像。您看到集合nft
的原因是因为NFT没有元数据。另外,除非您使用set_collection
给定为-m
参数,否则所有未明确的NFT都附加到本集合中您的candymachine有0个铸造物品。为了解决集合NFT,您只需要在铸造的默认集合NFT中添加元数据即可。如果您在mainnet-beta上,我建议您使用此网站,您也可以使用 metaboss (UT您必须将UR元数据上传到之前的存储空间)。
您可以看到使用显示命令将输出有关集合NFT的以下信息(以及有关CM的更多信息):
Collection Mint:gfe ... 6Q9
,该Collection> Collection Mint
如果其元数据为空,则是ur cm的NFT,您只需要更新它,因此每个铸造的NFT都会将其附加到非空的NFT作为集合中。There is something you need to know regarding MCC. When you run
upload
command a NFT without metadata will be minted to the wallet that you provide as authority (-k
parameter), this empty NFT is the default collection NFT and will act as portrait of all the unminted NFTs inside ur collection. The reason that you seeCollection NFT
as portrait is because that NFT has no metadata. Also all unminted NFTs are attached to this collection unless you useset_collection
given as-m
parameter a new collection id (another created collection NFT), but this can only be done if your CandyMachine has 0 minted items.In order to solve the Collection NFT you just have to add metadata to the minted default collection NFT. If you are on mainnet-beta I recommend you to use this website, you can also use metaboss (ut you will have to upload ur metadata to an storage before).
You can see what is the collection NFT that is attached to ur CandyMachine using the show command that will output the following info about the collection NFT (and more info about the CM):
Collection mint: Gfe...6q9
, thatCollection mint
is the NFT that is attached to ur CM as collection if its metadata is empty you just have to update it so every minted NFT will be attached to a non-empty NFT as collection.